-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtox.ini
More file actions
68 lines (61 loc) · 1.76 KB
/
tox.ini
File metadata and controls
68 lines (61 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
68
[tox]
envlist = py{311,312}-django{42,52},quality,docs
[doc8]
ignore = D001
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pydocstyle]
; D101 = Missing docstring in public class
; D200 = One-line docstring should fit on one line with quotes
; D203 = 1 blank line required before class docstring
; D212 = Multi-line docstring summary should start at the first line
; D417 = Missing argument descriptions in the docstring
ignore = D101,D200,D203,D212,D417
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = test_settings
addopts = --cov completion_aggregator --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements
filterwarnings =
error
ignore:'cgi' is deprecated:DeprecationWarning:webob
[testenv]
deps =
django42: Django>=4.2,<4.3
django52: Django>=5.2,<5.3
-r{toxinidir}/requirements/test.txt
commands =
pytest --nomigrations {posargs}
passenv =
EDXAGG_MYSQL_HOST
EDXAGG_MYSQL_PORT
EDXAGG_MYSQL_USER
EDXAGG_MYSQL_PASSWORD
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
whitelist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/completion_aggregator.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:quality]
whitelist_externals =
make
deps =
-r{toxinidir}/requirements/quality.txt
commands =
pylint completion_aggregator tests test_utils
pycodestyle completion_aggregator tests
pydocstyle completion_aggregator tests
isort --check-only --diff tests test_utils completion_aggregator manage.py setup.py test_settings.py
make selfcheck