-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtox.ini
More file actions
56 lines (50 loc) · 1.18 KB
/
tox.ini
File metadata and controls
56 lines (50 loc) · 1.18 KB
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
48
49
50
51
52
53
54
55
56
[tox]
envlist = py{311,312}-django{42,52}, quality, docs
[doc8]
; D001 = Line too long
ignore=D001
[pycodestyle]
exclude = .git,.tox
max-line-length = 120
max-doc-length = 120
[pytest]
DJANGO_SETTINGS_MODULE = test_utils.test_settings
addopts = --cov openedx_filters --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements site-packages
[testenv]
allowlist_externals =
make
deps =
django42: Django>=4.2,<4.3
django52: Django>=5.2,<5.3
!py311: -r{toxinidir}/requirements/test.txt
commands_pre =
py311: make upgrade
py311: pip install -r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = test_utils.test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/openedx_filters.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:quality]
allowlist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/quality.txt
commands =
make quality