daphne/.travis.yml
Maik Hoepfel c2baa32a9c Add Hypothesis for property-based tests
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.
2017-02-09 13:21:41 +01:00

17 lines
231 B
YAML

sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- TWISTED_RELEASE="twisted"
- TWISTED_RELEASE="twisted==16.0.0"
install: pip install $TWISTED_RELEASE -e .[tests]
script: python -m unittest discover