-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
125 lines (118 loc) · 3.68 KB
/
pyproject.toml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[tool.pytest.ini_options]
filterwarnings = [
"ignore::django.utils.deprecation.RemovedInDjango50Warning",
"ignore::django.utils.deprecation.RemovedInDjango51Warning",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
"ignore:'cgi':DeprecationWarning",
"ignore:'imghdr':DeprecationWarning",
"ignore:'etree':DeprecationWarning",
"ignore:UserFactory._after_postgeneration:DeprecationWarning",
"ignore:Deprecated call to `pkg_resources.declare_namespace.*:DeprecationWarning",
]
DJANGO_SETTINGS_MODULE = "lms.envs.test"
addopts = [
"--pyargs", "openedx_course_enrollment_audit",
"--cov", "openedx_course_enrollment_audit",
"--cov-report", "term-missing",
"--nomigrations",
"--reuse-db",
"--durations=20",
"-p", "no:randomly",
"--json-report",
"--json-report-omit", "keywords,streams,collectors,log,traceback,tests",
"--json-report-file=none"
]
[tool.coverage.run]
omit = ['*/migrations/*', '*/tests/*']
[tool.ruff]
line-length = 120
exclude = ['migrations', 'manage.py', 'setup.py']
target-version = 'py311'
[tool.ruff.lint]
select = [
'F', # Pyflakes
'E', # Pycodestyle (errors)
'W', # Pycodestyle (warnings)
'C90', # mccabe
'I', # isort
'N', # pep8-naming
'D', # pydocstyle
'UP', # pyupgrade
'YTT', # flake8-2020
'ANN', # flake8-annotations
'ASYNC',# flake8-async
'S', # flake8-bandit
'BLE', # flake8-blind-except
'FBT', # flake8-boolean-trap
'B', # flake8-bugbear
'A', # flake8-builtins
'COM', # flake8-commas
'C4', # flake8-comprehensions
'DTZ', # flake8-datetimez
'T10', # flake8-debugger
'DJ', # flake8-django
'EM', # flake8-errmsg
'EXE', # flake8-executable
'FA', # flake8-future-annotations
'ISC', # flake8-implicit-str-concat
'ICN', # flake8-import-conventions
'LOG', # flake8-logging
'G', # flake8-logging-format
'INP', # flake8-no-pep420
'PIE', # flake8-pie
'T20', # flake8-print
'PYI', # flake8-pyi
'PT', # flake8-pytest-style
'Q', # flake8-quotes
'RSE', # flake8-raise
'RET', # flake8-return
'SLF', # flake8-self
'SLOT', # flake8-slots
'SIM', # flake8-simplify
'TID', # flake8-tidy-imports
'TC', # flake8-type-checking
'INT', # flake8-gettext
'ARG', # flake8-unused-arguments
'PTH', # flake8-use-pathlib
'TD', # flake8-todos
'ERA', # eradicate
'PD', # pandas-vet
'PGH', # pygrep-hooks
'PL', # Pylint
'TRY', # tryceratops
'FLY', # flynt
'NPY', # NumPy-specific rules
'AIR', # Airflow
'PERF', # Perflint
'FURB', # refurb
# The following linter runs only in the preview mode.
# 'DOC', # pydoclint
'RUF', # Ruff-specific rules
]
ignore = [
'ANN002', # missing-type-args
'ANN003', # missing-type-kwargs
'ANN204', # missing-return-type-special-method
'D203', # one-blank-line-before-class
'D212', # multi-line-summary-first-line (incompatible with D213)
'DJ001', # django-nullable-model-string-field
'Q000', # bad-quotes-inline-string
'TD002', # missing-t\odo-author
'TD003', # missing-t\odo-link
'TRY003', # raise-vanilla-args
]
[tool.ruff.lint.per-file-ignores]
'*/tests/*' = [
'S101', # assert
'INP001', # implicit-namespace-package
'SLF001', # private-member-access
'RUF018', # assignment-in-assert
'ARG001', # unused-function-argument (fixtures)
'ANN001', # missing-type-function-argument
]
[tool.ruff.lint.flake8-annotations]
suppress-none-returning = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.pylint]
allow-magic-value-types = ['int', 'str']