-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (33 loc) · 720 Bytes
/
tox.ini
File metadata and controls
35 lines (33 loc) · 720 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
[tox]
envlist =
py{39,310}-dj{32,41,42}
py{310,311}-dj{32,41,42,50}
py{312}-dj{42,50,51,52,main}
py{313}-dj{51,52,main}
docs
[testenv]
usedevelop = true
extras =
tests
commands =
pytest {posargs:tests} --cov=translated_fields --cov-report=term-missing
deps =
pytest
pytest-django
pytest-cov
contextvars
dj32: Django>=3.2,<4.0
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
dj52: Django>=5.2a1,<6.0
djmain: https://github.com/django/django/archive/main.zip
[testenv:docs]
deps =
Sphinx
changedir = docs
commands = make html
skip_install = true
allowlist_externals = make