bindep/tox.ini
Paul Belanger e5d5f598f5
Update tox.ini with py35
We test py35 in the gate, add that to tox.ini too.

Change-Id: Ifb3b313caedd427dec777ad7e72649ec78f6a80f
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2017-05-24 19:45:42 -04:00

32 lines
660 B
INI

[tox]
envlist = py35,py27,pypy,pep8
skipdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
commands =
python setup.py test --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
[testenv:venv]
commands = {posargs}
[testenv:cover]
commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
ignore = E123,E125,E129,H
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build