django-rest-framework/.travis.yml

52 lines
807 B
YAML
Raw Normal View History

2012-09-07 16:32:52 +04:00
language: python
2016-01-20 15:53:53 +03:00
python:
- "2.7"
- "3.4"
- "3.5"
2016-01-20 15:53:53 +03:00
sudo: false
2012-09-07 16:32:52 +04:00
env:
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
- DJANGO=1.11
- DJANGO=master
2015-04-05 05:07:11 +03:00
matrix:
fast_finish: true
include:
- python: "3.6"
env: DJANGO=master
- python: "3.6"
env: DJANGO=1.11
2017-01-18 15:17:19 +03:00
- python: "3.3"
2017-01-24 12:24:18 +03:00
env: DJANGO=1.8
- python: "2.7"
env: TOXENV="lint"
- python: "2.7"
env: TOXENV="docs"
exclude:
- python: "2.7"
env: DJANGO=master
- python: "3.4"
env: DJANGO=master
allow_failures:
- env: DJANGO=master
2017-01-18 19:02:58 +03:00
- env: DJANGO=1.11
2012-09-07 16:32:52 +04:00
2014-09-06 04:56:25 +04:00
install:
- pip install tox tox-travis
2014-09-06 04:56:25 +04:00
2012-09-07 16:32:52 +04:00
script:
- tox
2015-07-30 06:53:57 +03:00
after_success:
- pip install codecov
- codecov -e TOXENV,DJANGO
notifications:
email: false