1
0
Fork 0
mirror of https://github.com/sileht/bird-lg.git synced 2024-11-14 11:24:43 +01:00
bird-lg/tox.ini

35 lines
591 B
INI
Raw Permalink Normal View History

2016-10-09 07:45:17 +02:00
[tox]
minversion = 2.0
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
deps = .[test]
commands = {toxinidir}/tools/pretty_tox.sh
[testenv:pep8]
deps =
flake8
doc8
commands =
2016-10-09 09:16:19 +02:00
# doc8 doc/source
2016-10-09 07:45:17 +02:00
flake8 {posargs}
[testenv:venv]
commands = {posargs}
[testenv:cover]
commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
builtins = _
ignores = H103
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build