forked from jrief/django-admin-sortable2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (36 loc) · 918 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
dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
env:
- DJANGO="django<1.11"
- DJANGO="django<2.0"
- DJANGO="django<2.1"
- DJANGO="django<2.2"
- DJANGO="django<2.3"
- DJANGO='https://github.com/django/django/archive/master.tar.gz'
install:
- pip install -q $DJANGO
- python setup.py -q install
script:
- cd example/ && ./manage.py test testapp --settings=testapp.settings
matrix:
exclude:
- python: 2.7
env: DJANGO="django<2.1"
- python: 2.7
env: DJANGO="django<2.2"
- python: 2.7
env: DJANGO="django<2.3"
- python: 2.7
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
- python: 3.4
env: DJANGO="django<2.3"
- python: 3.4
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
allow_failures:
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz'