35 lines
439 B
INI
35 lines
439 B
INI
[tox]
|
|
|
|
envlist = py35, py36
|
|
|
|
[testenv]
|
|
|
|
deps =
|
|
aiohttp
|
|
pytest
|
|
coverage
|
|
|
|
commands =
|
|
coverage run -m pytest -v tests {posargs}
|
|
mv .coverage .coverage.{envname}
|
|
|
|
whitelist_externals =
|
|
coverage
|
|
mv
|
|
echo
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8
|
|
|
|
commands =
|
|
flake8 sanic
|
|
|
|
[testenv:report]
|
|
|
|
commands =
|
|
coverage combine
|
|
coverage report
|
|
coverage html
|
|
echo "Open file://{toxinidir}/coverage/index.html"
|