bootstrap-vz/tox.ini

32 lines
635 B
INI
Raw Normal View History

2015-01-02 14:40:24 +01:00
[tox]
envlist = flake8, unit
[flake8]
ignore = E101,E221,E241,E501,W191
max-line-length = 110
[testenv:flake8]
deps = flake8
commands = flake8 bootstrapvz/ --exclude=minify_json.py
[testenv:unit]
deps =
nose
nose-cov
commands = nosetests -v tests/unit --with-coverage --cover-package=bootstrapvz --cover-inclusive
2015-04-11 14:12:00 +02:00
[testenv:integration]
2014-11-26 01:00:41 +01:00
deps =
nose
2014-11-30 13:58:10 +01:00
Pyro4 >= 4.30
2014-11-30 00:33:42 +01:00
pyvbox >= 0.2.0
commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive
2015-04-11 14:12:00 +02:00
[testenv:docs]
2015-04-11 15:16:18 +02:00
changedir = docs
2015-04-11 14:12:00 +02:00
deps =
sphinx
commands =
2015-04-11 15:16:18 +02:00
sphinx-build -W -b html -d _build/html/doctrees . _build/html