daphne/tox.ini
2016-06-15 21:44:36 +02:00

26 lines
334 B
INI

[tox]
envlist = py{27,35}
[base]
commands =
coverage report -m
[testenv]
usedevelop = true
commands =
coverage run -m unittest
{[base]commands}
deps =
asgiref
twisted
autobahn
coverage
[testenv:py27]
commands =
coverage run -m unittest2
{[base]commands}
deps =
unittest2
{[testenv]deps}