diff options
author | Julian Berman <Julian@GrayVines.com> | 2013-09-25 09:19:39 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2013-09-25 09:19:39 -0400 |
commit | cd9db3c1af3edbab70e62f43adab380fb7e3bc59 (patch) | |
tree | 1be4aaf2509e6c7c56fd925fe87239cb50a72530 | |
parent | f718d368834bddab2c9d430c7d814fba8434d1ea (diff) | |
download | jsonschema-cd9db3c1af3edbab70e62f43adab380fb7e3bc59.tar.gz |
Pass along arguments.
-rw-r--r-- | tox.ini | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 = |