-
Notifications
You must be signed in to change notification settings - Fork 8
/
tox.ini
49 lines (44 loc) · 1.23 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tox]
envlist=
py310-djmaster-dtmaster-tests,
{py38,py310}-dj{3.2,4.0}-dt{2.4,2.5}-tests,
{py36,py38}-dj{3.0,3.1,3.2}-dt{2.3}-tests,
py36-dj{2.0,2.1}-dt{1.19,1.21,2.0,2.1,2.2}-tests,
py36-dj{1.11}-dt{1.19,1.21}-tests,
py36-dj{1.9,1.10,1.11}-dt{1.15,1.16}-tests,
{py38,py36}-{flake},
[testenv]
basepython =
py36: python3.6
py38: python3.8
py310: python3.10
usedevelop = True
recreate = True
deps =
flake8
dj1.9: Django==1.9
dj1.10: Django==1.10
dj1.11: Django==1.11
dj2.0: Django==2.0
dj2.1: Django==2.1
dj3.0: Django==3.0
dj3.1: Django==3.1
dj3.2: Django==3.2
dj4.0: Django==4.0
dj4.2: Django==4.2
djmaster: https://github.com/django/django/archive/refs/heads/main.zip
dt1.15: django-tables2==1.15.0
dt1.16: django-tables2==1.16.0
dt1.19: django-tables2==1.19.0
dt1.21: django-tables2==1.21.2
dt2.0: django-tables2==2.0.6
dt2.1: django-tables2==2.1.1
dt2.2: django-tables2==2.2.1
dt2.3: django-tables2==2.3.4
dt2.4: django-tables2==2.4.1
dt2.5: django-tables2==2.5.3
dtmaster: https://github.com/bradleyayers/django-tables2/archive/master.zip
allowlist_externals = *
commands =
tests: ./runtests.py
flake: flake8