drydock/tox.ini
Scott Hussey 459ddf1023 Update tox with new requirements
Change requirements file naming to be
similar to the requirements-direct.txt name
and update tox.ini with the new name
2017-07-19 13:20:26 -05:00

16 lines
183 B
INI

[tox]
envlist = py35
[testenv]
deps=
-rrequirements-direct.txt
-rrequirements-test.txt
setenv=
PYTHONWARNING=all
commands=
py.test \
{posargs}
[flake8]
ignore=E302,H306