Skip to content

Commit e742b10

Browse files
committed
Added testing in more Django versions
1 parent 7756b0d commit e742b10

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
@@ -23,6 +23,7 @@ install:
2323
- |
2424
if [ "$TEST_TYPE" = build ]; then
2525
pip install pytest==3.0.2 pytest-cov pytest-benchmark coveralls six pytest-django mock django-filter
26+
pip install django==$DJANGO_VERSION
2627
pip install -e .
2728
python setup.py develop
2829
elif [ "$TEST_TYPE" = lint ]; then
@@ -48,5 +49,13 @@ env:
4849
matrix:
4950
fast_finish: true
5051
include:
52+
- python: '2.7'
53+
env: TEST_TYPE=build DJANGO_VERSION=1.6
54+
- python: '2.7'
55+
env: TEST_TYPE=build DJANGO_VERSION=1.7
56+
- python: '2.7'
57+
env: TEST_TYPE=build DJANGO_VERSION=1.8
58+
- python: '2.7'
59+
env: TEST_TYPE=build DJANGO_VERSION=1.9
5160
- python: '2.7'
5261
env: TEST_TYPE=lint

0 commit comments

Comments
 (0)