2023-03-25 20:01:14 +01:00
|
|
|
###############################################################################
|
|
|
|
# pytest
|
|
|
|
###############################################################################
|
2024-05-14 00:25:03 +02:00
|
|
|
|
2023-03-25 20:01:14 +01:00
|
|
|
[tool.ruff]
|
2024-05-14 00:25:03 +02:00
|
|
|
src = [
|
|
|
|
"src",
|
|
|
|
]
|
2023-03-25 20:01:14 +01:00
|
|
|
target-version = "py311"
|
2024-05-14 00:25:03 +02:00
|
|
|
select = [
|
|
|
|
"ALL",
|
|
|
|
]
|
|
|
|
unfixable = [
|
|
|
|
"T20",
|
|
|
|
"RUF001",
|
|
|
|
"RUF002",
|
|
|
|
"RUF003",
|
|
|
|
]
|
2023-03-25 20:01:14 +01:00
|
|
|
|
|
|
|
ignore = [
|
2024-05-14 00:25:03 +02:00
|
|
|
"ANN", # flake8-annotations
|
|
|
|
"BLE", # flake8-blind-except
|
|
|
|
"TCH", # flake8-type-checking / TODO: revisit later ?
|
2023-03-25 20:01:14 +01:00
|
|
|
|
2024-05-14 00:25:03 +02:00
|
|
|
"E501", # long lines
|
|
|
|
"D1", # missing docstring
|
|
|
|
"TRY003", # Avoid specifying long messages outside the exception class
|
|
|
|
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
|
2023-03-25 20:01:14 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
|
|
"**/tests/*" = [
|
2024-05-14 00:25:03 +02:00
|
|
|
"S101", # Use of assert detected.
|
|
|
|
"S105", # Possible hardcoded password.
|
|
|
|
"B011", # Do not call assert False since python -O removes these calls.
|
|
|
|
"ARG001", # Unused function argument (mostly fixtures)
|
|
|
|
"PLR2004", # Magic value used in comparison, consider replacing {value} with a constant variable
|
|
|
|
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes.
|
2023-03-25 20:01:14 +01:00
|
|
|
]
|
|
|
|
# File {name} is part of an implicit namespace package. Add an `__init__.py`.
|
2024-05-14 00:25:03 +02:00
|
|
|
"tasks.py" = [
|
|
|
|
"INP001",
|
|
|
|
]
|
|
|
|
"src/conftest.py" = [
|
|
|
|
"INP001",
|
|
|
|
]
|
|
|
|
"src/manage.py" = [
|
|
|
|
"INP001",
|
|
|
|
]
|
2022-04-24 15:51:25 +02:00
|
|
|
|
2023-03-25 20:01:14 +01:00
|
|
|
"src/purchase/management/commands/generate_dummy_baskets.py" = [
|
2024-05-14 00:25:03 +02:00
|
|
|
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes.
|
2022-04-24 15:51:25 +02:00
|
|
|
]
|
|
|
|
|
2023-03-25 20:01:14 +01:00
|
|
|
[tool.ruff.pydocstyle]
|
|
|
|
convention = "pep257"
|
2022-04-24 15:51:25 +02:00
|
|
|
|
2023-03-25 20:01:14 +01:00
|
|
|
[tool.ruff.mccabe]
|
|
|
|
max-complexity = 10
|
2023-06-20 09:04:30 +02:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "--color=yes --driver Firefox"
|
|
|
|
minversion = "6.0"
|
|
|
|
DJANGO_SETTINGS_MODULE = "checkout.settings"
|
|
|
|
testpaths = [
|
2024-05-14 00:25:03 +02:00
|
|
|
"src",
|
2023-06-20 09:04:30 +02:00
|
|
|
]
|
|
|
|
|
2024-02-04 00:19:58 +01:00
|
|
|
markers = [
|
2024-05-14 00:25:03 +02:00
|
|
|
"flaky",
|
2024-02-04 00:19:58 +01:00
|
|
|
]
|
|
|
|
|
2023-06-20 09:04:30 +02:00
|
|
|
###############################################################################
|
|
|
|
# ruff
|
|
|
|
###############################################################################
|