-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
61 lines (55 loc) · 2.18 KB
/
tox.ini
File metadata and controls
61 lines (55 loc) · 2.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
57
58
59
60
61
[tox]
envlist = py311-django42, py311-django52, py312-django52, quality
[doc8]
; D001 = Line too long
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
; D215 = Section underline is over-indented (numpy style)
; D404 = First word of the docstring should not be This (numpy style)
; D405 = Section name should be properly capitalized (numpy style)
; D406 = Section name should end with a newline (numpy style)
; D407 = Missing dashed underline after section (numpy style)
; D408 = Section underline should be in the line following the section’s name (numpy style)
; D409 = Section underline should match the length of its name (numpy style)
; D410 = Missing blank line after section (numpy style)
; D411 = Missing blank line before section (numpy style)
; D412 = No blank lines allowed between a section header and its content (numpy style)
; D413 = Missing blank line after last section (numpy style)
; D414 = Section has no content (numpy style)
ignore = D101,D200,D203,D212,D213,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = openedx_cas.settings.test
addopts = --cov openedx_cas --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements site-packages
[testenv]
deps =
django42: Django>=4.2,<5.0
django52: Django>=5.2,<6.0
-r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
[testenv:quality]
setenv =
DJANGO_SETTINGS_MODULE = openedx_cas.settings.test
allowlist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/quality.txt
commands =
touch openedx_cas/tests/__init__.py
pylint openedx_cas openedx_cas/tests manage.py setup.py
rm openedx_cas/tests/__init__.py
pycodestyle openedx_cas openedx_cas/tests manage.py setup.py
pydocstyle openedx_cas openedx_cas/tests manage.py setup.py
isort --check-only --diff openedx_cas/tests openedx_cas manage.py setup.py
make selfcheck