almanach/tox.ini
Marc Aubry 451191f843 Add py35 for unit test
Change-Id: I102b3e1e55d8d2195525354d744a38afdf75be13
2016-08-23 15:08:35 -04:00

25 lines
433 B
INI

[tox]
envlist = py27,py34,py35,pep8
[testenv]
deps =
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
setenv =
PYTHONPATH = {toxinidir}
commands = nosetests --tests tests
[testenv:venv]
commands = {posargs}
[testenv:pep8]
deps = -r{toxinidir}/test-requirements.txt
commands = flake8 {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
max-line-length = 120