Skip to content

Commit 87c11e6

Browse files
committed
Allow development Django versions to be tested with Travis
1 parent 2f24d59 commit 87c11e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
- DJANGO="Django>=1.8a,<1.9"
1414

1515
install:
16-
- pip install -U coverage coveralls $DJANGO
16+
- pip install --pre -U coverage coveralls $DJANGO
1717
- python -c 'from __future__ import print_function; import django; print("Django " + django.get_version())'
1818

1919
script: coverage run -a setup.py test
@@ -24,6 +24,8 @@ matrix:
2424
env: DJANGO="Django>=1.6,<1.7"
2525
- python: 2.6
2626
env: DJANGO="Django>=1.7,<1.8a"
27+
- python: 2.6
28+
env: DJANGO="Django>=1.8a,<1.9"
2729
- python: 3.2
2830
env: DJANGO="Django>=1.4,<1.5"
2931
- python: 3.3

0 commit comments

Comments
 (0)