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 | |
| parent | 6f98a8d61c33a4fc3619f998eeea0075d51c739b (diff) | |
[test] use random name for couchdb container in docker perf test
Diffstat (limited to 'scripts/docker/files')
| -rwxr-xr-x | scripts/docker/files/bin/run-perf.sh | 20 | ||||
| -rwxr-xr-x | scripts/docker/files/bin/run-tox.sh | 5 | 
2 files changed, 24 insertions, 1 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 diff --git a/scripts/docker/files/bin/run-tox.sh b/scripts/docker/files/bin/run-tox.sh index 793ce6e1..74fde182 100755 --- a/scripts/docker/files/bin/run-tox.sh +++ b/scripts/docker/files/bin/run-tox.sh @@ -1,6 +1,7 @@  #!/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} @@ -11,4 +12,6 @@ if [ ! -z "${SOLEDAD_BRANCH}" ]; then    git -C ${REPO} checkout ${SOLEDAD_BRANCH}  fi -(cd ${REPO}; tox -- -v --durations 0 --couch-url http://couchdb:5984) +cd ${REPO} + +tox -- --couch-url ${COUCH_URL} | 
