-
Notifications
You must be signed in to change notification settings - Fork 47
/
.travis.yml
33 lines (33 loc) · 831 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
language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION="django>=1.8,<1.9"
- DJANGO_VERSION="django>=1.9,<1.10"
- DJANGO_VERSION="django>=1.10,<1.11"
- DJANGO_VERSION="django>=1.11,<1.12"
- DJANGO_VERSION="django>=2.0,<2.1"
- DJANGO_VERSION="django>=2.1,<2.2"
- DJANGO_VERSION="django>=2.2,<2.3"
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION="django>=2.0,<2.1"
- python: "2.7"
env: DJANGO_VERSION="django>=2.1,<2.2"
- python: "2.7"
env: DJANGO_VERSION="django>=2.2,<2.3"
- python: "3.4"
env: DJANGO_VERSION="django>=2.1,<2.2"
- python: "3.4"
env: DJANGO_VERSION="django>=2.2,<2.3"
install:
- pip install -r requirements.txt
- pip install $DJANGO_VERSION
- python setup.py install
script: make test