-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
34 lines (29 loc) · 853 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"
env:
- DJANGO=Django==1.4.12
- DJANGO=Django==1.5.7
- DJANGO=Django==1.6.4
- DJANGO=https://www.djangoproject.com/download/1.7b3/tarball/
matrix:
allow_failures:
# Allow failures for unreleased Django version
- env: DJANGO=https://www.djangoproject.com/download/1.7b3/tarball/
exclude:
# Django 1.4 and 1.5 do not fully support Python 3.3
- env: DJANGO=Django==1.4.12
python: "3.3"
- env: DJANGO=Django==1.5.7
python: "3.3"
# 1.7 doesn't support Python 2.6 anymore
- env: DJANGO=https://www.djangoproject.com/download/1.7b3/tarball/
python: "2.6"
# command to install dependencies
install:
- pip install -q $DJANGO --use-mirrors
# - pip install -r requirements.txt --use-mirrors
# command to run tests
script: python setup.py test