-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (40 loc) · 706 Bytes
/
Copy path.travis.yml
File metadata and controls
40 lines (40 loc) · 706 Bytes
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
language: python
sudo: false
dist: xenial
python:
- "2.7"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7"
- "3.7-dev"
- "3.8"
- "3.8-dev"
- "3.9"
- "3.9-dev"
- "nightly"
- "pypy3.5"
env:
- DJANGO="Django~=1.11"
- DJANGO="Django~=2.0"
- DJANGO="Django~=2.1"
install:
- pip install --quiet --upgrade setuptools wheel pip
- pip install --quiet --upgrade -r requirements.txt
- pip install --quiet --upgrade "$DJANGO"
matrix:
exclude:
- python: "2.7"
env: DJANGO="Django~=2.0"
- python: "2.7"
env: DJANGO="Django~=2.1"
script:
- inv test
- inv build
- inv test-install
- inv coverage
after_success:
- coveralls
notifications:
email: false