mirror of
https://github.com/django/daphne.git
synced 2024-11-11 02:26:35 +03:00
10 lines
284 B
YAML
10 lines
284 B
YAML
|
sudo: false
|
||
|
language: python
|
||
|
python:
|
||
|
- "2.7"
|
||
|
- "3.5"
|
||
|
install:
|
||
|
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install unittest2; fi
|
||
|
- pip install asgiref twisted autobahn
|
||
|
script: if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then python -m unittest2; else python -m unittest; fi
|