forked from kmmbvnr/django-any
-
Notifications
You must be signed in to change notification settings - Fork 20
/
.travis.yml
32 lines (32 loc) · 797 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
dist: xenial
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
env:
- DJANGO="Django>=1.11,<2.0" DB=sqlite
- DJANGO="Django>=2.0,<2.1" DB=sqlite
- DJANGO="Django>=2.1,<2.2" DB=sqlite
- DJANGO="Django>=2.2,<3.0" DB=sqlite
matrix:
exclude:
- python: "2.7"
env: DJANGO="Django>=2.0,<2.1" DB=sqlite
- python: "2.7"
env: DJANGO="Django>=2.1,<2.2" DB=sqlite
- python: "2.7"
env: DJANGO="Django>=2.2,<3.0" DB=sqlite
- python: "3.4"
env: DJANGO="Django>=2.1,<2.2" DB=sqlite
- python: "3.4"
env: DJANGO="Django>=2.2,<3.0" DB=sqlite
install:
- export PYTHONPATH=./django_any/:$PYTHONPATH
- pip install -U $DJANGO
- pip install -r tests/requirements.pip
script:
- python tests/manage.py test django_any