-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 842 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
29
30
31
32
33
34
35
[project]
name = "takeout-manager"
version = "0.1.0"
description = "Manager service for Google Photos Takeout automation"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
"dependency-injector>=4.42.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.12.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=4.1.0",
"httpx>=0.27.0",
]
[tool.uv]
package = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
markers = [
"integration: needs external services (real process / fakes / docker)",
"e2e: full black-box end-to-end (docker compose)",
]
addopts = "--strict-markers --cov=backend --cov-report=term-missing --cov-fail-under=90"