diff options
author | drebs <drebs@leap.se> | 2016-07-25 11:38:19 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-08-01 21:09:03 -0300 |
commit | 8d08016b6e5985569ca5d04ef3e2690e78809f54 (patch) | |
tree | a1f46c7709226f554659a740c81d151513b5ff67 /scripts/docker/files/bin/run-tox.sh | |
parent | bf9355077c2f190c82d660ad9b7059a1c3f32a8d (diff) |
[test] use tox and couchdb image to run tests
Diffstat (limited to 'scripts/docker/files/bin/run-tox.sh')
-rwxr-xr-x | scripts/docker/files/bin/run-tox.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/docker/files/bin/run-tox.sh b/scripts/docker/files/bin/run-tox.sh new file mode 100755 index 00000000..793ce6e1 --- /dev/null +++ b/scripts/docker/files/bin/run-tox.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +REPO=/builds/leap/soledad/testing + +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 -- -v --durations 0 --couch-url http://couchdb:5984) |