2016-02-06 04:25:37 +03:00
|
|
|
sudo: false
|
2017-01-31 04:24:17 +03:00
|
|
|
|
2016-02-06 04:25:37 +03:00
|
|
|
language: python
|
2017-01-31 04:24:17 +03:00
|
|
|
|
2016-02-06 04:25:37 +03:00
|
|
|
python:
|
|
|
|
- "3.5"
|
2017-04-03 16:49:08 +03:00
|
|
|
- "3.6"
|
2017-01-31 04:24:17 +03:00
|
|
|
|
2017-11-29 04:59:59 +03:00
|
|
|
env:
|
2017-11-29 10:57:44 +03:00
|
|
|
- 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
|
2018-02-02 08:02:37 +03:00
|
|
|
- isort --check-only --diff --recursive daphne tests
|
2017-11-29 04:59:59 +03:00
|
|
|
- unify --check-only --recursive --quote \" daphne tests
|
2017-01-31 04:24:17 +03:00
|
|
|
|