summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f9e2a9d..a323213 100644
--- a/tox.ini
+++ b/tox.ini
@@ -9,6 +9,7 @@ install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
+# NOTE(tonyb): This project has chosen to *NOT* consume upper-constraints.txt
commands =
python setup.py testr --slowest --testr-args='{posargs}'
@@ -17,7 +18,9 @@ deps = hacking<0.13,>=0.12
commands = flake8
[testenv:cover]
-commands = python setup.py testr --coverage --testr-args='{posargs}'
+commands =
+ python setup.py testr --coverage --testr-args='{posargs}'
+ coverage report
[testenv:venv]
commands = {posargs}