summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 2 insertions, 6 deletions
diff --git a/tox.ini b/tox.ini
index 0a667cc..c46cd3b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,9 +14,7 @@ setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
-commands =
- # Use the lockutils wrapper to ensure that external locking works correctly
- lockutils-wrapper python setup.py test --slowest --testr-args='{posargs}'
+commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
@@ -28,9 +26,7 @@ commands = {posargs}
commands = python setup.py build_sphinx
[testenv:cover]
-commands =
- # Use the lockutils wrapper to ensure that external locking works correctly
- lockutils-wrapper python setup.py test --coverage --testr-args='{posargs}'
+commands = python setup.py testr --coverage
[flake8]
# H803 skipped on purpose per list discussion.