summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2018-09-29 17:17:52 -0400
committerJulian Berman <Julian@GrayVines.com>2018-09-29 17:17:52 -0400
commit2bc0057a5c883a33effbcc01371ace25f90665f5 (patch)
tree1773be72144b4aad6e24ee62131356116dcf1c31
parent777b0b664238dbc12d811e292aab76222e6155d7 (diff)
downloadjsonschema-2bc0057a5c883a33effbcc01371ace25f90665f5.tar.gz
I forgot this config format is the literal worst.
-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