File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if [ "${BUILD_TYPE}" = "integration" ]; then
1313 SHORTTEST=-short
1414 fi
1515 export SHORTTEST
16- ./test/scripts/run_integration_tests.sh
16+ make integration
1717elif [ " ${TRAVIS_EVENT_TYPE} " = " cron" ] || [[ " ${TRAVIS_BRANCH} " =~ ^rel/ ]]; then
1818 if [[ " ${OS} " != " darwin" ]]; then
1919 make fulltest -j2
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ chmod +x ~/gimme
1515eval " $( ~/gimme " ${GOLANG_VERSION} " ) "
1616
1717" ${SCRIPTPATH} /../buildtools/install_buildtools.sh" " gotest.tools/gotestsum"
18- export GOTESTCOMMAND=" gotestsum --format pkgname --jsonfile testresults.json --"
1918
2019if [ " ${OS} -${ARCH} " = " linux-arm" ] || [ " ${OS} -${ARCH} " = " windows-amd64" ]; then
2120 # for arm, no tests need to be invoked.
Original file line number Diff line number Diff line change 9292echo " PARALLEL_FLAG = ${PARALLEL_FLAG} "
9393
9494if [ " ${# TESTPATTERNS[@]} " -eq 0 ]; then
95- ${GOTESTCOMMAND} --format pkgname --jsonfile integrationtestresults.json -- ${RACE_OPTION} ${PARALLEL_FLAG} -timeout 1h -v ${SHORTTEST} ./...
95+ ${GOTESTCOMMAND} ${RACE_OPTION} ${PARALLEL_FLAG} -timeout 1h -v ${SHORTTEST} ./...
9696else
9797 for TEST in ${TESTPATTERNS[@]} ; do
98- ${GOTESTCOMMAND} --format pkgname --jsonfile integrationtestresults.json -- ${RACE_OPTION} ${PARALLEL_FLAG} -timeout 1h -v ${SHORTTEST} -run ${TEST} ./...
98+ ${GOTESTCOMMAND} ${RACE_OPTION} ${PARALLEL_FLAG} -timeout 1h -v ${SHORTTEST} -run ${TEST} ./...
9999 done
100100fi
101101
You can’t perform that action at this time.
0 commit comments