-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
34 lines (29 loc) · 813 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
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.6,<1.7"
- DJANGO="django>=1.7,<1.8"
- DJANGO="django>=1.8,<1.9"
install:
- pip install $DJANGO
- python setup.py install
script:
- "DJANGO_SETTINGS_MODULE=test_project.settings python test_project/manage.py test test_app"
- "if [ $DJANGO != 'django>=1.4,<1.5' ]; then DJANGO_SETTINGS_MODULE=test_project.custom_user_settings python test_project/manage.py test test_app_custom_user; fi"
matrix:
exclude:
- python: "2.6"
env: DJANGO="django>=1.7,<1.8"
- python: "2.6"
env: DJANGO="django>=1.8,<1.9"
- python: "3.3"
env: DJANGO="django>=1.4,<1.5"
- python: "3.4"
env: DJANGO="django>=1.4,<1.5"