diff options
author | drebs <drebs@riseup.net> | 2017-10-06 07:03:49 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-10-06 07:03:49 -0300 |
commit | 7e5a47d2ae2940acfc176fe28b02ba14b43da608 (patch) | |
tree | 4680842f1e9ae8545943155891f1b53f04b4275f /scripts | |
parent | 2772d76d0d66d9e094a435e110fd9f945d9e105c (diff) |
[test] fix script that runs benchmarks
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/benchmark/run-benchmarks-ci-job.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/benchmark/run-benchmarks-ci-job.sh b/scripts/benchmark/run-benchmarks-ci-job.sh index e99a8ab0..b2a8c417 100755 --- a/scripts/benchmark/run-benchmarks-ci-job.sh +++ b/scripts/benchmark/run-benchmarks-ci-job.sh @@ -13,6 +13,7 @@ # the variable from their environments as they see fit. set -eu +set -o xtrace ENVIRONMENT=${1} RUN_BENCHMARKS=${RUN_BENCHMARKS:-} @@ -22,9 +23,11 @@ if [ -z "${RUN_BENCHMARKS}" ]; then exit 0 fi +echo "Running tox in environment ${ENVIRONMENT}..." + /usr/bin/unbuffer \ tox \ - --recreate + --recreate \ -e ${ENVIRONMENT} \ -- \ --couch-url http://couchdb:5984 \ |