django-rest-framework/.travis.yml

58 lines
1.1 KiB
YAML
Raw Normal View History

2012-09-07 16:32:52 +04:00
language: python
cache: pip
2012-09-07 16:32:52 +04:00
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.10
- DJANGO=1.11
- DJANGO=2.0
- 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 }
- { python: "3.6", env: DJANGO=2.0 }
- { python: "2.7", env: TOXENV=lint }
- { python: "2.7", env: TOXENV=docs }
2017-12-14 13:48:03 +03:00
- python: "3.6"
env: TOXENV=dist
script:
- python setup.py bdist_wheel
- tox --installpkg ./dist/djangorestframework-*.whl
- tox # test sdist
- python: "3.6"
env: TOXENV=readme
addons:
apt_packages: pandoc
2017-12-14 13:48:03 +03:00
exclude:
- { python: "2.7", env: DJANGO=master }
- { python: "2.7", env: DJANGO=2.0 }
- { python: "3.4", env: DJANGO=master }
allow_failures:
- env: DJANGO=master
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