daphne/.travis.yml

23 lines
337 B
YAML
Raw Normal View History

2016-02-06 04:25:37 +03:00
sudo: false
2016-02-06 04:25:37 +03:00
language: python
2016-02-06 04:25:37 +03:00
python:
- "3.5"
2017-04-03 16:49:08 +03:00
- "3.6"
2017-11-29 04:59:59 +03:00
env:
- TWISTED="twisted==17.5.0"
2017-11-29 04:59:59 +03:00
- 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