-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (32 loc) · 788 Bytes
/
tox.ini
File metadata and controls
36 lines (32 loc) · 788 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
[tox]
env_list =
check
lint
py{39,310}-django3.2
py{39,310,311,312}-django4.2
py{310,311,312,313}-django5.2
coverage
no_package = true
[testenv]
deps =
-rrequirements/testing.txt
py39: s3transfer # uv workaround - avoid older version being installed
django3.2: Django>=3.2,<4.0
django4.2: Django>=4.2,<5.0
django5.2: Django>=5.2,<6.0
django3.2: django-storages[s3]>=1.14
django4.2: django-storages[s3]>=1.14
django5.2: django-storages[s3]>=1.14
allowlist_externals = make
commands = make test
package = editable
[testenv:check]
base_python = python3.13
commands = make check
uv_seed = true
[testenv:lint]
base_python = python3.13
commands = make lint
[testenv:coverage]
base_python = python3.13
commands = make coverage-report