Skip to content

Commit 2b62941

Browse files
auvipycarltongibson
authored andcommitted
Added testing against Django 2.2a1. (#6422)
* Added testing against Django 2.2a1. * Allow failures for Django 2.2
1 parent 190f620 commit 2b62941

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ matrix:
1212
- { python: "3.5", env: DJANGO=1.11 }
1313
- { python: "3.5", env: DJANGO=2.0 }
1414
- { python: "3.5", env: DJANGO=2.1 }
15+
- { python: "3.5", env: DJANGO=2.2 }
1516
- { python: "3.5", env: DJANGO=master }
1617

1718
- { python: "3.6", env: DJANGO=1.11 }
1819
- { python: "3.6", env: DJANGO=2.0 }
1920
- { python: "3.6", env: DJANGO=2.1 }
21+
- { python: "3.6", env: DJANGO=2.2 }
2022
- { python: "3.6", env: DJANGO=master }
2123

2224
- { python: "3.7", env: DJANGO=2.0 }
2325
- { python: "3.7", env: DJANGO=2.1 }
26+
- { python: "3.7", env: DJANGO=2.2 }
2427
- { python: "3.7", env: DJANGO=master }
2528

2629
- { python: "3.7", env: TOXENV=base }
@@ -37,6 +40,7 @@ matrix:
3740

3841
allow_failures:
3942
- env: DJANGO=master
43+
- env: DJANGO=2.2
4044

4145
install:
4246
- pip install tox tox-venv tox-travis

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
{py27,py34,py35,py36}-django111,
44
{py34,py35,py36,py37}-django20,
55
{py35,py36,py37}-django21
6+
{py35,py36,py37}-django22
67
{py35,py36,py37}-djangomaster,
78
base,dist,lint,docs,
89

@@ -11,6 +12,7 @@ DJANGO =
1112
1.11: django111
1213
2.0: django20
1314
2.1: django21
15+
2.2: django22
1416
master: djangomaster
1517

1618
[testenv]
@@ -23,6 +25,7 @@ deps =
2325
django111: Django>=1.11,<2.0
2426
django20: Django>=2.0,<2.1
2527
django21: Django>=2.1,<2.2
28+
django22: Django>=2.2a1,<3.0
2629
djangomaster: https://github.com/django/django/archive/master.tar.gz
2730
-rrequirements/requirements-testing.txt
2831
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)