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-04-30 14:49:26 -05:00
|
|
|
[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]
|
|
|
|
deps =
|
|
|
|
sphinx
|
|
|
|
commands =
|
2015-04-11 14:13:55 +02:00
|
|
|
./taskoverview.py --output docs/_static/graph.json
|
2015-04-11 14:35:39 +02:00
|
|
|
sphinx-build -b html -d docs/_build/html/doctrees docs docs/_build/html
|
2015-04-11 15:06:41 +02:00
|
|
|
|
|
|
|
[testenv:docs-serve]
|
|
|
|
changedir = docs/_build/html
|
|
|
|
commands = python -m SimpleHTTPServer 8080
|