Skip to content

Commit 819052c

Browse files
committed
Update test suite for Django 3.0
1 parent 1ec6dba commit 819052c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ section on Django Project website for the current state and timeline.
9393
Upgrading from 1.x
9494
==================
9595

96-
* Support Python 2.6 and 3.3, and Django versions before 1.11 has been
96+
* Support for Python 2.6 and 3.3, and Django versions before 1.11 has been
9797
dropped.
9898

9999
* The ``SkipPredicate`` exception and ``skip()`` method of ``Predicate``,

tox.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ envlist =
33
py27-django{111},
44
py34-django{111,20},
55
py35-django{111,20},
6-
py36-django{111,20},
7-
py37-django{111,20},
8-
py38-django{111,20},
6+
py36-django{111,20,30},
7+
py37-django{111,20,30},
8+
py38-django{111,20,30},
99
pypy-django{111},
10-
pypy3-django{111,20},
10+
pypy3-django{111,20,30},
1111
packaging,
1212

1313
[testenv]
@@ -17,16 +17,16 @@ deps =
1717
djangorestframework
1818
django111: Django~=1.11
1919
django20: Django~=2.0
20-
20+
django30: Django~=3.0
2121
commands =
22-
coverage run tests/manage.py test testsuite {posargs: -v 2}
23-
coverage report -m
22+
py27,pypy: {envpython} tests/manage.py test testsuite {posargs: -v 2}
23+
py{34,35,36,37,38},pypy3: coverage run tests/manage.py test testsuite {posargs: -v 2}
24+
py{34,35,36,37,38},pypy3: coverage report -m
2425

2526
[testenv:packaging]
2627
usedevelop = false
2728
deps =
2829
django
2930
djangorestframework
30-
3131
commands =
3232
{envpython} tests/manage.py test testsuite {posargs: -v 2}

0 commit comments

Comments
 (0)