forked from Polyconseil/django-cid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (29 loc) · 871 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
sudo: false
dist: xenial
language: python
cache: pip
matrix:
fast_finish: true
include:
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
- {env: DJANGO=2.1, python: '3.5'}
- {env: DJANGO=2.1, python: '3.6'}
- {env: DJANGO=2.1, python: '3.7'}
- {env: DJANGO=2.1, python: 'nightly'}
- {env: DJANGO=2.2, python: '3.5'}
- {env: DJANGO=2.2, python: '3.6'}
- {env: DJANGO=2.2, python: '3.7'}
- {env: DJANGO=2.2, python: 'nightly'}
- {env: DJANGO=master, python: '3.6'}
- {env: DJANGO=master, python: '3.7'}
- {env: DJANGO=master, python: 'nightly'}
- {python: '3.7', env: TOXENV=docs}
- {python: '3.7', env: TOXENV=quality}
allow_failures:
- python: 'nightly'
- env: DJANGO=master
install:
- travis_retry pip install tox tox-travis
script:
- tox