diff options
Diffstat (limited to 'testing/tox.ini')
-rw-r--r-- | testing/tox.ini | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/testing/tox.ini b/testing/tox.ini index cbfa7dde..6bc82b8e 100644 --- a/testing/tox.ini +++ b/testing/tox.ini @@ -6,7 +6,7 @@ skipsdist=True basepython = python2.7 commands = ./ensure-pysqlcipher-has-usleep.sh - py.test -x --ignore=tests/benchmarks \ + py.test -x --ignore=tests/benchmarks --ignore=tests/responsiveness \ --cov-report=html \ --cov-report=term \ --cov=leap.soledad \ @@ -37,7 +37,7 @@ install_command = pip install {opts} {packages} [testenv:py34] basepython = python3.4 -commands = py.test --ignore=tests/benchmarks \ +commands = py.test --ignore=tests/benchmarks --ignore=tests/responsiveness \ --cov-report=html \ --cov-report=term \ --cov=leap.soledad \ @@ -80,6 +80,13 @@ commands = py.test --benchmark-only --watch-memory {posargs} passenv = HOST_HOSTNAME +[testenv:responsiveness] +deps = + {[testenv:benchmark]deps} +commands = + ./ensure-pysqlcipher-has-usleep.sh + pytest -m responsiveness {posargs} + [testenv:code-check] changedir = .. deps = |