-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtox.ini
More file actions
75 lines (57 loc) · 1.92 KB
/
Copy pathtox.ini
File metadata and controls
75 lines (57 loc) · 1.92 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tox]
min_version = 4.32
skipmissing_interpreters = true
envlist =
python{3.10,3.11}-django4.2-wagtail7.0
python{3.12,3.13}-django5.2-wagtail{7.0,7.3,7.4}
python3.14-django{5.2,6.0}-wagtail{7.3,7.4}
[gh-actions]
python =
3.10: python3.10
3.11: python3.11
3.12: python3.12
3.13: python3.13
3.14: python3.14
[testenv]
package = wheel
wheel_build_env = .pkg
use_frozen_constraints = true
constrain_package_deps = true
pass_env =
FORCE_COLOR
NO_COLOR
set_env =
python3.12: COVERAGE_CORE=sysmon
python3.13: COVERAGE_CORE=sysmon
python3.14: COVERAGE_CORE=sysmon
deps =
django4.2: Django>=4.2,<4.3
django5.2: Django>=5.2,<5.3
django6.0: Django>=6.0,<6.1
wagtail7.0: wagtail>=7.0,<7.1
wagtail7.3: wagtail>=7.3,<7.4
wagtail7.4: wagtail>=7.4,<7.5
extras = testing
install_command = python -Im pip install -U {opts} {packages}
commands =
python -Im coverage run testmanage.py test --deprecation all {posargs: -v 2}
[testenv:coverage-report]
commands =
python -Im coverage combine
python -Im coverage report -m
[testenv:interactive]
description = An interactive environment for local testing purposes
base_python = python3.12
; Note: the following are commented out for development convenience,
; so as to test the interactive mode with a different Wagtail version
; deps =
; wagtail>=6.3,<6.4
commands_pre =
python testmanage.py makemigrations --settings=tests.settings
python testmanage.py migrate --settings=tests.settings
python testmanage.py shell -c "from django.contrib.auth.models import User;(not User.objects.filter(username='admin').exists()) and User.objects.create_superuser('admin', 'super@example.com', 'changeme')" --settings=tests.settings
python testmanage.py createcachetable --settings=tests.settings
commands =
{posargs:python testmanage.py runserver 0.0.0.0:8020 --settings=tests.settings}
setenv =
INTERACTIVE = 1