-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
45 lines (45 loc) · 1005 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
37
38
39
40
41
42
43
44
45
---
language: python
python:
- 3.8
- 3.7
- 3.6
- 3.5
- 3.4
- 2.7
script: make test
notifications:
email: false
env:
matrix:
- DJANGO_VERSION='django~=1.8.5'
- DJANGO_VERSION='django~=1.11.26'
- DJANGO_VERSION='django~=2.2.9'
- DJANGO_VERSION='django~=3.0.2'
install:
- pip install $DJANGO_VERSION
- pip install -e .
- pip install -r test_requirements.txt
- pip install coveralls
after_success:
coveralls
jobs:
exclude:
- python: 3.8
env: DJANGO_VERSION='django~=1.8.5'
- python: 3.8
env: DJANGO_VERSION='django~=1.11.26'
- python: 3.7
env: DJANGO_VERSION='django~=1.8.5'
- python: 3.6
env: DJANGO_VERSION='django~=1.8.5'
- python: 3.5
env: DJANGO_VERSION='django~=3.0.2'
- python: 3.4
env: DJANGO_VERSION='django~=2.2.9'
- python: 3.4
env: DJANGO_VERSION='django~=3.0.2'
- python: 2.7
env: DJANGO_VERSION='django~=2.2.9'
- python: 2.7
env: DJANGO_VERSION='django~=3.0.2'