-
Notifications
You must be signed in to change notification settings - Fork 10
/
tox.ini
76 lines (67 loc) · 1.79 KB
/
tox.ini
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tox]
envlist = py{38,311}-django{42}, pii_check, quality, docs
[doc8]
max-line-length = 120
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pydocstyle]
ignore = D101,D200,D203,D212,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = test_settings
addopts = --cov edx_when --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements
[testenv]
deps =
wheel
django42: Django>=4.2,<5.0
-r{toxinidir}/requirements/test.txt
commands =
python -Wd -m pytest {posargs}
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
twine
deps =
wheel
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/edx_when.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py bdist_wheel
twine check dist/*
[testenv:quality]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
touch
deps =
wheel
-r{toxinidir}/requirements/quality.txt
commands =
touch tests/__init__.py
pylint edx_when tests test_utils manage.py setup.py
rm tests/__init__.py
pycodestyle edx_when tests manage.py setup.py
pydocstyle edx_when tests manage.py setup.py
isort --check-only --diff tests test_utils edx_when manage.py setup.py test_settings.py
make selfcheck
[testenv:pii_check]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
deps =
-r{toxinidir}/requirements/test.txt
django42: Django>=4.2,<5.0
commands =
code_annotations django_find_annotations --config_file .pii_annotations.yml --lint --report --coverage