Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit b17f727

Browse files
authored
Merge pull request #13 from bashu/patch-2
Update tests for Django 1.11+
2 parents 2b80011 + e1cac67 commit b17f727

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
- DJANGO="Django==1.8"
1313
- DJANGO="Django==1.9"
1414
- DJANGO="Django==1.10"
15+
- DJANGO="Django==1.11"
1516

1617
matrix:
1718
exclude:
@@ -20,8 +21,10 @@ matrix:
2021
env: DJANGO="Django==1.9"
2122
- python: "3.3"
2223
env: DJANGO="Django==1.10"
24+
- python: "3.3"
25+
env: DJANGO="Django==1.11"
2326

24-
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
27+
# command to install dependencies, e.g. pip install -r requirements.txt
2528
install:
2629
- pip install $DJANGO
2730
- pip install -r requirements-test.txt

tox.ini

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
{py27,py33}-django18
44
{py27,py34,py35}-django19
55
{py27,py34,py35}-django110
6+
{py27,py34,py35}-django111
67
{py27,py34,py35}-django{master}
78

89
[testenv]
@@ -11,7 +12,8 @@ setenv =
1112
commands = python runtests.py
1213
deps =
1314
-r{toxinidir}/requirements-test.txt
14-
django18: Django==1.8.16
15-
django19: Django==1.9.11
16-
django110: Django==1.10.3
15+
django18: Django==1.8.18
16+
django19: Django==1.9.13
17+
django110: Django==1.10.8
18+
django111: Django==1.11.9
1719
djangomaster: https://github.com/django/django/archive/master.tar.gz

0 commit comments

Comments
 (0)