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 e26c06a..8f68b4a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -20,7 +20,10 @@ commands =
perf,tests: {envbindir}/python -m pip install '{toxinidir}[format]'
tests: {envbindir}/trial {posargs:jsonschema}
- !py3{4,5,6},tests: {envpython} -m doctest {toxinidir}/README.rst
+ # Yeah so this is insane but it means tests, but not in the first 3.
+ # I.e., it doesn't mean "everything but py3{4,5,6}-tests", the tests
+ # is first applied independently.
+ !py3{4,5,6}-tests: {envpython} -m doctest {toxinidir}/README.rst
perf: {envpython} {toxinidir}/jsonschema/benchmarks/json_schema_test_suite.py --inherit-environ JSON_SCHEMA_TEST_SUITE
perf: {envpython} {toxinidir}/jsonschema/benchmarks/issue232.py --inherit-environ JSON_SCHEMA_TEST_SUITE