-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 668 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 668 Bytes
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
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
extend-select = ["I"] # import sorting
ignore = ["E501"] # allow long lines
[tool.ruff.format]
indent-style = "space"
quote-style = "double"
line-ending = "lf"
[tool.pytest.ini_options]
pythonpath = ["."]
markers = [
"smoke: High-level smoke tests",
"live: Tests that hit live external services (Letterboxd, etc.)",
"tmdb: Tests that require a TMDB API key"
]
minversion = "8.0"
# By default, *exclude* live network tests unless explicitly -m "live"
# addopts = "-m 'not live'"
addopts = "-ra"
filterwarnings = [
"ignore::DeprecationWarning:bs4.*",
]
asyncio_mode = "strict"