Blame tools/extra/packager/jsonschema-2.3.0/tox.ini

Packit 534379
[tox]
Packit 534379
envlist = py26, py27, pypy, py32, py33, docs, style
Packit 534379
Packit 534379
[testenv]
Packit 534379
commands =
Packit 534379
    py.test [] -s jsonschema
Packit 534379
    {envpython} -m doctest README.rst
Packit 534379
deps =
Packit 534379
    {[testenv:notpy33]deps}
Packit 534379
    {[testenv:py33]deps}
Packit 534379
Packit 534379
[testenv:coverage]
Packit 534379
commands =
Packit 534379
    coverage run --source jsonschema [] {envbindir}/py.test
Packit 534379
    coverage html
Packit 534379
deps =
Packit 534379
    {[testenv:notpy33]deps}
Packit 534379
    {[testenv:py33]deps}
Packit 534379
    coverage
Packit 534379
Packit 534379
[testenv:docs]
Packit 534379
basepython = python
Packit 534379
changedir = docs
Packit 534379
deps =
Packit 534379
    lxml
Packit 534379
    sphinx
Packit 534379
commands =
Packit 534379
    sphinx-build [] -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
Packit 534379
Packit 534379
[testenv:style]
Packit 534379
deps = flake8
Packit 534379
commands =
Packit 534379
    flake8 [] --max-complexity 10 jsonschema
Packit 534379
Packit 534379
[testenv:py26]
Packit 534379
deps =
Packit 534379
    {[testenv:notpy33]deps}
Packit 534379
    {[testenv:all]deps}
Packit 534379
    argparse
Packit 534379
    unittest2
Packit 534379
Packit 534379
[testenv:py33]
Packit 534379
commands =
Packit 534379
    py.test [] -s jsonschema
Packit 534379
    {envpython} -m doctest README.rst
Packit 534379
    sphinx-build -b doctest docs {envtmpdir}/html
Packit 534379
deps =
Packit 534379
    {[testenv:all]deps}
Packit 534379
    {[testenv:notpy26]deps}
Packit 534379
Packit 534379
[testenv:notpy33]
Packit 534379
deps =
Packit 534379
    mock
Packit 534379
Packit 534379
[testenv:notpy26]
Packit 534379
deps =
Packit 534379
    rfc3987
Packit 534379
Packit 534379
[testenv:all]
Packit 534379
deps =
Packit 534379
    lxml
Packit 534379
    pytest
Packit 534379
    sphinx
Packit 534379
    strict-rfc3339
Packit 534379
    webcolors
Packit 534379
Packit 534379
[flake8]
Packit 534379
ignore = E203,E302,E303,E701,F811
Packit 534379
Packit 534379
[pytest]
Packit 534379
addopts = -r s