mirror of
https://github.com/django/daphne.git
synced 2025-04-22 17:52:08 +03:00
26 lines
334 B
INI
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}
|