bootstrap-vz/tox.ini

24 lines
474 B
INI
Raw Normal View History

[flake8]
ignore = E101,E221,E241,E501,W191
max-line-length = 110
[tox]
envlist = flake8, integration
[testenv:flake8]
deps = flake8
commands = flake8 bootstrapvz/ --exclude=minify_json.py
[testenv:integration]
deps =
nose
nose-cov
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