Skip to content

Commit af94133

Browse files
committed
Update .travis to include python 3.2, 3.3 and django 1.7.x
1 parent 82b2042 commit af94133

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.travis.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,26 @@ language: python
33
python:
44
- 2.6
55
- 2.7
6+
- 3.2
7+
- 3.3
68
- pypy
79

10+
env:
11+
- DJANGO=Django==1.6
12+
- DJANGO=git+https://github.com/django/django.git@stable/1.7.x
13+
14+
matrix:
15+
exclude:
16+
- python: 2.6
17+
env: DJANGO=git+https://github.com/django/django.git@stable/1.7.x
18+
allow_failures:
19+
- env: DJANGO=git+https://github.com/django/django.git@stable/1.7.x
20+
821
install:
9-
- pip install -e .
10-
- pip install --use-mirrors coveralls
11-
- pip install --use-mirrors nose
22+
- pip install -q -e .
23+
- pip install -q $DJANGO
24+
- pip install -q --use-mirrors coveralls
25+
- pip install -q --use-mirrors nose
1226

1327
script: coverage run --source=menu `which django-admin.py` test --settings=menu.test_settings menu
1428

0 commit comments

Comments
 (0)