forked from openedx/edx-proctoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (30 loc) · 874 Bytes
/
setup.cfg
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
[isort]
indent=' '
line_length=120
multi_line_output=3
default_section = THIRDPARTY
known_edx =
known_django = django
known_first_party = edx_proctoring,mock_apps
known_third_party = ddt
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,DJANGOAPP,EDX,FIRSTPARTY,LOCALFOLDER
skip=
envs
migrations
[bdist_wheel]
universal = 1
[doc8]
max-line-length = 120
[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
ignore = D101,D200,D202,D203,D204,D205,D210,D212,D400,D401,D404
match-dir = (?!migrations)
[tool:pytest]
DJANGO_SETTINGS_MODULE = test_settings
addopts = -rfe --cov=edx_proctoring --cov-report=html -n 3