summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2013-09-25 09:19:39 -0400
committerJulian Berman <Julian@GrayVines.com>2013-09-25 09:19:39 -0400
commitcd9db3c1af3edbab70e62f43adab380fb7e3bc59 (patch)
tree1be4aaf2509e6c7c56fd925fe87239cb50a72530
parentf718d368834bddab2c9d430c7d814fba8434d1ea (diff)
downloadjsonschema-cd9db3c1af3edbab70e62f43adab380fb7e3bc59.tar.gz
Pass along arguments.
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 676ad61..1d72328 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,7 @@ envlist = py26, py27, pypy, py32, py33, docs, style
[testenv]
commands =
- py.test -s jsonschema
+ py.test [] -s jsonschema
{envpython} -m doctest README.rst
deps =
{[testenv:notpy33]deps}
@@ -25,12 +25,12 @@ deps =
lxml
sphinx
commands =
- sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
+ sphinx-build [] -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:style]
deps = flake8
commands =
- flake8 --max-complexity 10 jsonschema
+ flake8 [] --max-complexity 10 jsonschema
[testenv:py26]
deps =
@@ -41,7 +41,7 @@ deps =
[testenv:py33]
commands =
- py.test -s jsonschema
+ py.test [] -s jsonschema
{envpython} -m doctest README.rst
sphinx-build -b doctest docs {envtmpdir}/html
deps =