-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy path.travis.yml
43 lines (40 loc) · 972 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
# Config file for automatic testing at travis-ci.org
language: python
python:
# - 3.3
# - 3.4
- 3.5
- 3.6
- 3.7
- 3.8
env:
# - DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=3.0
matrix:
exclude:
# Python/Django combinations that aren't officially supported
# - { python: 3.6, env: DJANGO=1.8 }
# - { python: 3.3, env: DJANGO=1.9 }
- { python: 3.8, env: DJANGO=2.0}
- { python: 3.8, env: DJANGO=2.1}
- { python: 3.5, env: DJANGO=3.0}
- { python: 3.6, env: DJANGO=1.9 }
# - { python: 3.3, env: DJANGO=1.10 }
- { python: 3.6, env: DJANGO=1.10 }
# - { python: 3.3, env: DJANGO=1.11 }
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements_test.txt
- pip install tox-travis
# command to run tests using coverage, e.g. python setup.py test
script:
- tox
#
after_success:
- codecov