forked from wagtail/wagtail-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
41 lines (39 loc) · 949 Bytes
/
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
[tox]
skipsdist = True
usedevelop = True
envlist =
py39-dj{32,40,41}-wt{41,42}
py39-dj{42}-wt{50,51,52}
py{310,311,312}-dj{42,50}-wt{60,61,62}
py{310,311,312}-dj{51}-wt{63}
[testenv]
install_command = pip install -e ".[test]" -U {opts} {packages}
commands = py.test
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
deps =
dj32: django>=3.2,<4.0
dj41: django>=4.1,<4.2
dj42: django>=4.2,<4.3
dj50: django>=5.0,<5.1
dj51: django>=5.1,<5.2
wt41: wagtail>=4.1,<4.2
wt42: wagtail>=4.2,<5.0
wt50: wagtail>=5.0,<5.1
wt51: wagtail>=5.1,<5.2
wt52: wagtail>=5.2,<5.3
wt60: wagtail>=6.0,<6.1
wt61: wagtail>=6.1,<6.2
wt62: wagtail>=6.2,<6.3
wt63: wagtail>=6.3,<6.4
[testenv:flake8]
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
deps = flake8>3.9
commands = flake8 wagtailautocomplete