forked from jazzband/django-avatar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (47 loc) · 850 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
46
47
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
before_install:
- pip install coveralls
install:
- pip install -e .
- pip install -r tests/requirements.txt
- pip install Django==${DJANGO}
script: make test
env:
- DJANGO=1.11.27
- DJANGO=2.0.13
- DJANGO=2.1.15
- DJANGO=2.2.9
- DJANGO=3.0.2
matrix:
exclude:
- python: 3.8
env: DJANGO=1.11.27
- python: 2.7
env: DJANGO=2.0.13
- python: 3.8
env: DJANGO=2.0.13
- python: 2.7
env: DJANGO=2.1.15
- python: 3.4
env: DJANGO=2.1.15
- python: 3.8
env: DJANGO=2.1.15
- python: 2.7
env: DJANGO=2.2.9
- python: 3.4
env: DJANGO=2.2.9
- python: 2.7
env: DJANGO=3.0.2
- python: 3.4
env: DJANGO=3.0.2
- python: 3.5
env: DJANGO=3.0.2
after_success:
- coveralls