mirror of
https://github.com/django/daphne.git
synced 2025-04-21 01:02:06 +03:00
Hypothesis: "It works by letting you write tests that assert that something should be true for every case, not just the ones you happen to think of." I think it's well suited for the task of ensuring Daphne conforms to the ASGI specification.
10 lines
233 B
INI
10 lines
233 B
INI
# We test against the oldest supported Twisted release, and the current release.
|
|
[tox]
|
|
envlist = py{27,34,35}-twisted-{old,new}
|
|
|
|
[testenv]
|
|
extras = tests
|
|
deps =
|
|
twisted-old: twisted==16.0.0
|
|
commands = python -m unittest discover
|