sanic/tox.ini

34 lines
432 B
INI
Raw Normal View History

[tox]
2017-05-02 10:17:24 +01:00
envlist = py35, py36, flake8, check
2016-12-26 03:05:11 +00:00
[travis]
2016-12-26 03:05:11 +00:00
python =
2017-05-02 10:17:24 +01:00
3.5: py35, flake8, check
3.6: py36, flake8, check
[testenv]
deps =
-rrequirements-dev.txt
commands =
2016-12-26 03:05:11 +00:00
pytest tests {posargs}
2017-02-15 23:20:43 +00:00
coverage erase
coverage run -m sanic.app
2017-02-15 23:20:43 +00:00
coverage report
[testenv:flake8]
deps =
flake8
commands =
flake8 sanic
2017-05-02 10:17:24 +01:00
[testenv:check]
deps =
docutils
pygments
commands =
python setup.py check -r -s