-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (37 loc) · 756 Bytes
/
tox.ini
File metadata and controls
39 lines (37 loc) · 756 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
[tox]
envlist =
py{38,39,310,311,312}-django42,
py{310,311,312}-django50,
py{310,311,312,313}-django52,
py{312,313,314}-django60,
[testenv]
commands =
python manage.py migrate
coverage run manage.py test
coverage report
setenv =
DJANGO_SETTINGS_MODULE = knox_project.settings
PIP_INDEX_URL = https://pypi.python.org/simple/
deps =
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django52: Django>=5.2,<5.3
django60: Django>=6.0,<6.1
markdown>=3.0
djangorestframework
freezegun
mkdocs
pytest-django
setuptools
twine
wheel
coverage
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314