summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-11-14 20:34:48 +0000
committerGerrit Code Review <review@openstack.org>2019-11-14 20:34:48 +0000
commit9fa0b211a9b48c6fa00654386a615094f750a151 (patch)
treefddfbe3411070019eee35883799e003efe2b999f /tox.ini
parentcf33b3dac78edd5830217dea87c126f14f4c6fce (diff)
parent1107f24179c0c6fdcb58771f3a6e6c025352b5d3 (diff)
downloadswift-9fa0b211a9b48c6fa00654386a615094f750a151.tar.gz
Merge "Seamlessly reload servers with SIGUSR1"
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 3 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 18567359d..ed056c1e1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -9,12 +9,13 @@ install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
NOSE_WITH_COVERAGE=1
NOSE_COVER_BRANCHES=1
+ NOSE_COVER_HTML_DIR={toxinidir}/cover
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
-commands = find . ( -type f -o -type l ) -name "*.py[co]" -delete
- find . -type d -name "__pycache__" -delete
+commands = find {envdir} ( -type f -o -type l ) -name "*.py[co]" -delete
+ find {envdir} -type d -name "__pycache__" -delete
nosetests {posargs:test/unit}
whitelist_externals = find
rm