Skip to content

Commit fd1f59f

Browse files
committed
build on all supported versions of Django
1 parent d6f91d5 commit fd1f59f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
language: python
2+
env:
3+
- DJANGO=1.4
4+
- DJANGO=1.5
5+
- DJANGO=1.6
6+
- DJANGO=1.7
27
python:
38
- "2.6"
49
- "2.7"
@@ -7,5 +12,9 @@ python:
712
install:
813
- pip install .
914
- pip install -r test-requirements.txt
15+
- if [ $DJANGO = "1.4" ] ; then pip install https://github.com/django/django/archive/stable/1.4.x.zip#egg=django; fi
16+
- if [ $DJANGO = "1.5" ] ; then pip install https://github.com/django/django/archive/stable/1.5.x.zip#egg=django; fi
17+
- if [ $DJANGO = "1.6" ] ; then pip install https://github.com/django/django/archive/stable/1.6.x.zip#egg=django; fi
18+
- if [ $DJANGO = "1.7" ] ; then pip install https://github.com/django/django/archive/stable/1.7.x.zip#egg=django; fi
1019
# command to run tests
1120
script: ./runtests.sh

0 commit comments

Comments
 (0)