run benchmark tests with integration tests on travis

This commit is contained in:
Marten Seemann
2017-02-21 11:54:38 +07:00
parent 5bddd84fae
commit 7a5955f560

View File

@@ -4,9 +4,10 @@ set -e
go get -t ./...
if [ ${TESTMODE} == "unit" ]; then
ginkgo -r --cover --randomizeAllSpecs --randomizeSuites --trace --progress --skipPackage integrationtests
ginkgo -r --cover --randomizeAllSpecs --randomizeSuites --trace --progress --skipPackage integrationtests --skipMeasurements
fi
if [ ${TESTMODE} == "integration" ]; then
ginkgo --randomizeAllSpecs --randomizeSuites --trace --progress -focus "Benchmark"
ginkgo -r --randomizeAllSpecs --randomizeSuites --trace --progress integrationtests
fi