bootstrap-vz/tox.ini

52 lines
942 B
INI
Raw Normal View History

2015-01-02 14:40:24 +01:00
[tox]
2018-02-18 21:53:30 -08:00
envlist = flake8, pylint, yamllint, unit, integration, docs
2015-01-02 14:40:24 +01:00
[flake8]
ignore = E221,E241,E501
max-line-length = 110
2016-08-13 11:45:23 +02:00
[testenv]
basepython = python2.7
[testenv:flake8]
deps = flake8
2018-02-11 08:29:18 +00:00
commands = flake8 bootstrapvz/ tests/ {posargs}
2018-02-18 21:53:30 -08:00
[testenv:pylint]
deps =
pylint
nose
pyvbox
commands = pylint bootstrapvz/ tests/ setup.py
[testenv:unit]
deps =
nose
nose-cov
commands = nosetests --verbose {posargs:tests/unit}
2015-04-11 14:12:00 +02:00
[testenv:integration]
deps =
nose
nose-cov
commands = nosetests --verbose {posargs:tests/integration}
[testenv:system]
2014-11-26 01:00:41 +01:00
deps =
nose
nose-cov
nose-htmloutput
2014-11-30 00:33:42 +01:00
pyvbox >= 0.2.0
commands = nosetests --with-html --html-file=system.html --verbose {posargs:tests/system}
2015-04-11 14:12:00 +02:00
[testenv:docs]
2015-04-11 15:16:18 +02:00
changedir = docs
deps =
sphinx != 1.5
sphinx_rtd_theme
commands = sphinx-build -W -b html -d _build/html/doctrees . _build/html
[testenv:yamllint]
deps = yamllint
commands = yamllint manifests