summaryrefslogtreecommitdiff
path: root/scripts/docker/files/bin/run-tox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/docker/files/bin/run-tox.sh')
-rwxr-xr-xscripts/docker/files/bin/run-tox.sh5
1 files changed, 4 insertions, 1 deletions
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}