2014-04-15 19:31:04 -05:00
|
|
|
[flake8]
|
|
|
|
ignore = E101,E221,E241,E501,W191
|
|
|
|
max-line-length = 110
|
|
|
|
|
|
|
|
[tox]
|
2014-04-30 14:49:26 -05:00
|
|
|
envlist = flake8, integration
|
2014-04-27 09:59:11 -03:00
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
deps = flake8
|
|
|
|
commands = flake8 bootstrapvz/ --exclude=minify_json.py
|
2014-04-15 19:31:04 -05:00
|
|
|
|
2014-07-10 20:29:31 +02:00
|
|
|
[testenv:unit]
|
2014-04-30 14:49:26 -05:00
|
|
|
deps =
|
|
|
|
nose
|
|
|
|
nose-cov
|
2014-07-10 20:29:31 +02:00
|
|
|
commands = nosetests -v tests/unit --with-coverage --cover-package=bootstrapvz --cover-inclusive
|
2015-04-11 14:12:00 +02:00
|
|
|
|
2014-08-31 13:45:35 +02:00
|
|
|
[testenv:integration]
|
|
|
|
deps = nose
|
|
|
|
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
|