mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
language: python
|
|
cache: pip
|
|
dist: xenial
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- { python: "2.7", env: DJANGO=1.11 }
|
|
|
|
- { python: "3.4", env: DJANGO=1.11 }
|
|
- { python: "3.4", env: DJANGO=2.0 }
|
|
|
|
- { python: "3.5", env: DJANGO=1.11 }
|
|
- { python: "3.5", env: DJANGO=2.0 }
|
|
- { python: "3.5", env: DJANGO=2.1 }
|
|
- { python: "3.5", env: DJANGO=master }
|
|
|
|
- { python: "3.6", env: DJANGO=1.11 }
|
|
- { python: "3.6", env: DJANGO=2.0 }
|
|
- { python: "3.6", env: DJANGO=2.1 }
|
|
- { python: "3.6", env: DJANGO=master }
|
|
|
|
- { python: "3.7", env: DJANGO=2.0 }
|
|
- { python: "3.7", env: DJANGO=2.1 }
|
|
- { python: "3.7", env: DJANGO=master }
|
|
|
|
- { python: "3.7", env: TOXENV=base }
|
|
- { python: "2.7", env: TOXENV=lint }
|
|
- { python: "2.7", env: TOXENV=docs }
|
|
|
|
- python: "3.7"
|
|
env: TOXENV=dist
|
|
script:
|
|
- python setup.py bdist_wheel
|
|
- rm -r djangorestframework.egg-info # see #6139
|
|
- tox --installpkg ./dist/djangorestframework-*.whl
|
|
- tox # test sdist
|
|
|
|
allow_failures:
|
|
- env: DJANGO=master
|
|
|
|
install:
|
|
- pip install tox tox-venv tox-travis
|
|
|
|
script:
|
|
- tox
|
|
|
|
after_success:
|
|
- pip install codecov
|
|
- codecov -e TOXENV,DJANGO
|
|
|
|
notifications:
|
|
email: false
|