mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
50c2d71a80
* Use py36 on travis * Remove basepython from tox * Use py27 on travis * Use version ranges for dependencies * Use tox-travis to sync python/env factors * Add toxenv/django env vars to codecov build vars * Use raw string to fix py36 invalid escape sequence
48 lines
726 B
YAML
48 lines
726 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
- DJANGO=1.8
|
|
- DJANGO=1.9
|
|
- DJANGO=1.10
|
|
- DJANGO=master
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.6"
|
|
env: DJANGO=master
|
|
- python: "2.7"
|
|
env: TOXENV="lint"
|
|
- python: "2.7"
|
|
env: TOXENV="docs"
|
|
exclude:
|
|
- python: "3.3"
|
|
env: DJANGO=1.9
|
|
- python: "3.3"
|
|
env: DJANGO=1.10
|
|
- python: "3.3"
|
|
env: DJANGO=master
|
|
allow_failures:
|
|
- env: DJANGO=master
|
|
|
|
install:
|
|
- pip install tox tox-travis
|
|
|
|
script:
|
|
- tox
|
|
|
|
after_success:
|
|
- pip install codecov
|
|
- codecov -e TOXENV,DJANGO
|
|
|
|
notifications:
|
|
email: false
|