Skip to content

Commit e828040

Browse files
committed
Run tests against Django 3.2
1 parent 938f482 commit e828040

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/fake_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def get_fake_model(fields=None, model_base=PostgresModel, meta_options={}):
119119
def define_fake_app():
120120
"""Creates and registers a fake Django app."""
121121

122-
name = str(uuid.uuid4()).replace("-", "")[:8] + "-app"
122+
name = 'app_' + str(uuid.uuid4()).replace("-", "")[:8]
123123

124124
app_config_cls = type(
125125
name + "Config",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36-dj{20,21,22,30,31}, py37-dj{20,21,22,30,31}, py38-dj{20,21,22,30,31}, py39-dj{21,22,30,31}
2+
envlist = py36-dj{20,21,22,30,31,32}, py37-dj{20,21,22,30,31,32}, py38-dj{20,21,22,30,31,32}, py39-dj{21,22,30,31,32}
33

44
[testenv]
55
deps =
@@ -8,6 +8,7 @@ deps =
88
dj22: Django>=2.2,<2.3
99
dj30: Django>=3.0,<3.0.2
1010
dj31: Django>=3.1,<3.2
11+
dj32: Django>=3.2,<3.3
1112
.[test]
1213
setenv =
1314
DJANGO_SETTINGS_MODULE=settings

0 commit comments

Comments
 (0)