-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (39 loc) · 741 Bytes
/
tox.ini
File metadata and controls
42 lines (39 loc) · 741 Bytes
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
[tox]
requires =
tox>=4.2
env_list =
py3{12, 11, 10, 9, 8}-dj42
py3{11, 10, 9, 8}-dj41
py3{10, 9, 8}-dj32
[testenv]
package = wheel
wheel_build_env = .pkg
deps =
covdefaults
coverage[toml]
dj32: Django~=3.2.16
dj41: Django~=4.1.3
dj42: Django~=4.2.1
djmain: https://github.com/django/django/tarball/main
pass_env =
FORCE_COLOR
NO_COLOR
set_env =
DJANGO_SETTINGS_MODULE = simple_menu.test_settings
commands =
coverage run -m django test -v2 {posargs:simple_menu}
coverage report
coverage xml
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[gh-actions:env]
django =
3.2: dj32
4.1: dj41
4.2: dj42
main: djmain