diff options
author | drebs <drebs@leap.se> | 2016-07-25 21:51:45 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-08-01 21:09:04 -0300 |
commit | 76acb8f39a32b6b61f00af571bae9bd48c0a5d62 (patch) | |
tree | 6adb7ab8f852aefe8748b7e6f1da786c9bd8f1ad /scripts/docker/files/bin/run-perf.sh | |
parent | 6f98a8d61c33a4fc3619f998eeea0075d51c739b (diff) |
[test] use random name for couchdb container in docker perf test
Diffstat (limited to 'scripts/docker/files/bin/run-perf.sh')
-rwxr-xr-x | scripts/docker/files/bin/run-perf.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/docker/files/bin/run-perf.sh b/scripts/docker/files/bin/run-perf.sh new file mode 100755 index 00000000..35c7f006 --- /dev/null +++ b/scripts/docker/files/bin/run-perf.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +REPO=/builds/leap/soledad/testing +COUCH_URL="${COUCH_URL:-http://127.0.0.1:5984}" + +if [ ! -z "${SOLEDAD_REMOTE}" ]; then + git -C ${REPO} remote set-url origin ${SOLEDAD_REMOTE} + git -C ${REPO} fetch origin +fi + +if [ ! -z "${SOLEDAD_BRANCH}" ]; then + git -C ${REPO} checkout ${SOLEDAD_BRANCH} +fi + +cd ${REPO} + +tox perf -- \ + --durations 0 \ + --couch-url ${COUCH_URL} \ + --twisted |