mirror of
https://github.com/django/daphne.git
synced 2024-11-13 03:26:33 +03:00
23 lines
337 B
YAML
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
|
|
|