sanic/tox.ini

37 lines
615 B
INI
Raw Normal View History

[tox]
2017-05-15 02:49:25 +01:00
envlist = py35, py36, {py35,py36}-no-ext, flake8, check
2016-12-26 03:05:11 +00:00
[testenv]
2017-05-15 02:49:25 +01:00
usedevelop = True
setenv =
{py35,py36}-no-ext: SANIC_NO_UJSON=1
{py35,py36}-no-ext: SANIC_NO_UVLOOP=1
deps =
2017-05-15 02:49:25 +01:00
coverage
2018-01-31 21:58:48 +00:00
pytest==3.3.2
2017-06-11 16:49:35 +01:00
pytest-cov
2017-08-09 06:21:40 +01:00
pytest-sanic
2017-05-15 02:49:25 +01:00
pytest-sugar
2018-02-27 06:08:05 +00:00
aiohttp>=2.3
2017-05-15 02:49:25 +01:00
chardet<=2.3.0
beautifulsoup4
gunicorn
commands =
2018-03-16 04:28:52 +00:00
pytest tests --cov sanic --cov-report= {posargs}
- coverage combine --append
2017-08-10 15:55:38 +01:00
coverage report -m
[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