-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
47 lines (44 loc) · 787 Bytes
/
Copy pathtox.ini
File metadata and controls
47 lines (44 loc) · 787 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
43
44
45
46
47
[tox]
envlist =
py{310,311,312,313,314}-dj52
py{312,313,314}-dj60
py{313,314}-djmain
skip_missing_interpreters = true
[testenv]
allowlist_externals=pytest,coverage
usedevelop=True
ignore_outcome =
djmain: True
ignore_errors =
djmain: True
deps=
dj52: Django>=5.2,<5.3
dj60: Django>=6.0,<6.1
djmain: https://github.com/django/django/archive/main.tar.gz
django-payments[dev]
coverage
pytest
pytest-cov
pytest-django
pytest-mock
dj-database-url
factory-boy
tox
tox-gh-actions
extras=
dev
commands=
pytest -vs {posargs}
coverage xml
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314
[gh-actions:env]
DJANGO =
5.2: dj52
6.0: dj60
main: djmain