Skip to content

Commit 762cfc2

Browse files
hannsemanbluetech
authored andcommitted
Run tests against Django 3.2
1 parent 59fdb49 commit 762cfc2

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
python: 3.8
5656
allow_failure: false
5757

58+
- name: py39-dj32-postgres-xdist-coverage
59+
python: 3.9
60+
allow_failure: false
61+
5862
- name: py39-dj31-postgres-xdist-coverage
5963
python: 3.9
6064
allow_failure: false
@@ -75,6 +79,10 @@ jobs:
7579
python: 3.8
7680
allow_failure: false
7781

82+
- name: py38-dj32-sqlite-xdist-coverage
83+
python: 3.8
84+
allow_failure: false
85+
7886
- name: py38-dj31-sqlite-xdist-coverage
7987
python: 3.8
8088
allow_failure: false
@@ -96,6 +104,10 @@ jobs:
96104
python: 3.6
97105
allow_failure: false
98106

107+
- name: py36-dj32-mysql_myisam-coverage
108+
python: 3.6
109+
allow_failure: false
110+
99111
# pypy3: not included with coverage reports (much slower then).
100112
- name: pypy3-dj22-postgres
101113
python: pypy3

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers =
1616
Framework :: Django :: 2.2
1717
Framework :: Django :: 3.0
1818
Framework :: Django :: 3.1
19+
Framework :: Django :: 3.2
1920
Intended Audience :: Developers
2021
License :: OSI Approved :: BSD License
2122
Operating System :: OS Independent

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
22
envlist =
3-
py39-dj{31,30,22}-postgres
4-
py38-dj{31,30,22}-postgres
5-
py37-dj{31,30,22}-postgres
6-
py36-dj{31,30,22}-postgres
3+
py39-dj{32,31,30,22}-postgres
4+
py38-dj{32,31,30,22}-postgres
5+
py37-dj{32,31,30,22}-postgres
6+
py36-dj{32,31,30,22}-postgres
77
py35-dj{22}-postgres
88
checkqa
99

1010
[testenv]
1111
extras = testing
1212
deps =
1313
djmaster: https://github.com/django/django/archive/master.tar.gz
14+
dj32: Django>=3.2b1,<4.0
1415
dj31: Django>=3.1,<3.2
1516
dj30: Django>=3.0,<3.1
1617
dj22: Django>=2.2,<2.3

0 commit comments

Comments
 (0)