File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 3
3
- " 2.6"
4
4
- " 2.7"
5
5
env :
6
- - DJANGO=Django==1.3.3
7
6
- DJANGO=Django==1.4.1
8
7
- DJANGO=Django==1.5
8
+ - DJANGO=Django==1.6
9
+ - DJANGO=Django==1.7
9
10
- DJANGO=https://github.com/django/django/archive/master.zip
10
11
matrix :
11
12
include :
@@ -16,8 +17,10 @@ matrix:
16
17
exclude :
17
18
- python : " 2.6"
18
19
env : DJANGO=https://github.com/django/django/archive/master.zip
20
+ - python : " 2.6"
21
+ env : DJANGO=Django==1.7
19
22
install :
20
- - pip install south
23
+ - if [ $DJANGO = 'Django==1.4.1' -o $DJANGO = 'Django==1.5' -o $DJANGO = 'Django==1.6' ]; then pip install south; fi
21
24
- pip install $DJANGO
22
25
- pip install -e .
23
26
script :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ django_test() {
33
33
}
34
34
35
35
django_test ' django-admin.py test --settings=testapp.settings' ' 2' ' normal settings'
36
- if [ " $DJANGO " != " https://github.com/django/django/archive/master.zip " ]
36
+ if [ $DJANGO = ' Django==1.4.1 ' -o $DJANGO = ' Django==1.5 ' -o $DJANGO = ' Django==1.6 ' ]
37
37
then
38
38
django_test ' django-admin.py test --settings=testapp.settings_with_south' ' 2' ' with south in installed apps'
39
39
fi
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'django-nose' ,
9
- version = '1.2 ' ,
9
+ version = '1.7 ' ,
10
10
description = 'Makes your Django tests simple and snappy' ,
11
11
long_description = open (os .path .join (ROOT , 'README.rst' )).read (),
12
12
author = 'Jeff Balogh' ,
You can’t perform that action at this time.
0 commit comments