@@ -5,26 +5,6 @@ envlist = py{311,312}-django{42,52}, docs, quality
55exclude = .git,.tox,migrations
66max-line-length = 120
77
8- [pydocstyle]
9- ; D101 = Missing docstring in public class
10- ; D200 = One-line docstring should fit on one line with quotes
11- ; D203 = 1 blank line required before class docstring
12- ; D212 = Multi-line docstring summary should start at the first line
13- ; D215 = Section underline is over-indented (numpy style)
14- ; D404 = First word of the docstring should not be This (numpy style)
15- ; D405 = Section name should be properly capitalized (numpy style)
16- ; D406 = Section name should end with a newline (numpy style)
17- ; D407 = Missing dashed underline after section (numpy style)
18- ; D408 = Section underline should be in the line following the section's name (numpy style)
19- ; D409 = Section underline should match the length of its name (numpy style)
20- ; D410 = Missing blank line after section (numpy style)
21- ; D411 = Missing blank line before section (numpy style)
22- ; D412 = No blank lines allowed between a section header and its content (numpy style)
23- ; D413 = Missing blank line after last section (numpy style)
24- ; D414 = Section has no content (numpy style)
25- ignore = D101,D200,D203,D212,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
26- match-dir = (?!migrations).*
27-
288[pytest]
299DJANGO_SETTINGS_MODULE = test_settings
3010addopts = --cov edx_event_bus_redis --cov-report term-missing --cov-report xml
@@ -72,7 +52,7 @@ commands =
7252 pylint edx_event_bus_redis tests test_utils manage.py setup.py
7353 rm tests/__init__.py
7454 pycodestyle edx_event_bus_redis tests manage.py setup.py
75- pydocstyle edx_event_bus_redis tests manage.py setup.py
55+ ruff check edx_event_bus_redis tests manage.py setup.py
7656 isort --check-only --diff tests test_utils edx_event_bus_redis manage.py setup.py test_settings.py
7757 make selfcheck
7858
0 commit comments