daphne/.travis.yml
2017-11-28 23:57:44 -08:00

23 lines
337 B
YAML

sudo: false
language: python
python:
- "3.5"
- "3.6"
env:
- TWISTED="twisted==17.5.0"
- TWISTED="twisted"
install:
- pip install $TWISTED isort unify flake8 -e .[tests]
- pip freeze
script:
- pytest
- flake8
- isort --check-only --recursive daphne tests
- unify --check-only --recursive --quote \" daphne tests