File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+ env :
3
+ - DJANGO=1.4
4
+ - DJANGO=1.5
5
+ - DJANGO=1.6
6
+ - DJANGO=1.7
2
7
python :
3
8
- " 2.6"
4
9
- " 2.7"
7
12
install :
8
13
- pip install .
9
14
- 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
10
19
# command to run tests
11
20
script : ./runtests.sh
You can’t perform that action at this time.
0 commit comments