drydock/tox.ini
Scott Hussey 07cb34e82d Initial Python skeleton and the model
classes to match the YAML schema
2017-02-22 17:32:55 -06:00

15 lines
174 B
INI

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