bootstrap-vz/tox.ini
Tiago Ilieve 9e332b2f86 Move Pyro4 dependency from 'tox.ini' to 'setup.py'
It is a runtime dependency of the server component, needed not only for
testing.
2016-04-16 17:45:46 -03:00

37 lines
749 B
INI

[tox]
envlist = flake8, unit, integration, docs
[flake8]
ignore = E101,E221,E241,E501,W191
max-line-length = 110
[testenv:flake8]
deps = flake8
commands = flake8 bootstrapvz/ tests/ --exclude=minify_json.py {posargs}
[testenv:unit]
deps =
nose
nose-cov
commands = nosetests --verbose {posargs:tests/unit}
[testenv:integration]
deps =
nose
nose-cov
commands = nosetests --verbose {posargs:tests/integration}
[testenv:system]
deps =
nose
nose-cov
nose-htmloutput
pyvbox >= 0.2.0
commands = nosetests --with-html --html-file=system.html --verbose {posargs:tests/system}
[testenv:docs]
changedir = docs
deps =
sphinx
sphinx_rtd_theme
commands = sphinx-build -W -b html -d _build/html/doctrees . _build/html