Skip to content

Commit 9126b53

Browse files
claudepaaugustin
authored andcommitted
Added test target for Django 1.10
1 parent 0ed1538 commit 9126b53

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,25 @@ env:
1010
- DJANGO="Django>=1.7.0,<1.8.0"
1111
- DJANGO="Django>=1.8.0,<1.9.0"
1212
- DJANGO="Django>=1.9.0,<1.10.0"
13+
- DJANGO="Django<1.11.0"
1314
matrix:
1415
exclude:
1516
- python: "3.2"
1617
env: DJANGO="Django>=1.9.0,<1.10.0"
1718
- python: "3.3"
1819
env: DJANGO="Django>=1.9.0,<1.10.0"
20+
- python: "3.2"
21+
env: DJANGO="Django<1.11.0"
22+
- python: "3.3"
23+
env: DJANGO="Django<1.11.0"
1924
- python: "3.5"
2025
env: DJANGO="Django>=1.7.0,<1.8.0"
2126
- python: "3.5"
2227
env: DJANGO="Django>=1.8.0,<1.9.0"
2328
install:
2429
- pip install -e .
25-
- travis_retry pip install $DJANGO django-discover-runner sqlparse
30+
- travis_retry pip install django-discover-runner sqlparse
31+
- travis_retry pip install --pre $DJANGO
2632
script:
2733
- make jshint
2834
- make test

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{27,32,33,34}-django{17,18},
4-
py{27,34,35}-django19,
4+
py{27,34,35}-django{19,110},
55
flake8,
66
isort
77

@@ -20,6 +20,7 @@ deps =
2020
django17: Django>=1.7,<1.8
2121
django18: Django>=1.8,<1.9
2222
django19: Django>=1.9,<1.10
23+
django110: Django<1.11
2324
django-discover-runner
2425
selenium
2526
sqlparse

0 commit comments

Comments
 (0)