forked from developersociety/wagtail-link-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
36 lines (32 loc) · 783 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
[tox]
env_list =
check
lint
py{38,39,310,311}-django3.2-wagtail4.1
py{38,39,310,311,312}-django{3.2,4.2}-wagtail5.2
py{38,39,310,311,312}-django4.2-wagtail6.1
py{310,311,312}-django5.0-wagtail6.1
coverage
no_package = true
[testenv]
deps =
-rrequirements/testing.txt
django3.2: Django>=3.2,<4.0
django4.2: Django>=4.2,<5.0
django5.0: Django>=5.0,<5.1
wagtail4.1: wagtail>=4.1,<4.2
wagtail5.2: wagtail>=5.2,<5.3
wagtail6.1: wagtail>=6.1,<6.2
allowlist_externals = make
commands = make test
package = editable
[testenv:check]
base_python = python3.12
commands = make check
uv_seed = true
[testenv:lint]
base_python = python3.12
commands = make lint
[testenv:coverage]
base_python = python3.12
commands = make coverage-report