- Implemented tests for player API endpoints including play, pause, stop, next, previous, seek, set volume, set mode, reload playlist, and get state. - Added mock player service for testing API interactions. - Created tests for player service methods including play, pause, stop playback, next, previous, seek, set volume, set mode, and reload playlist. - Ensured proper handling of success, error, and edge cases in both API and service tests. - Verified state management and serialization in player state tests.
53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[project]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"aiosqlite==0.21.0",
|
|
"bcrypt==4.3.0",
|
|
"email-validator==2.2.0",
|
|
"fastapi[standard]==0.116.1",
|
|
"ffmpeg-python==0.2.0",
|
|
"httpx==0.28.1",
|
|
"pydantic-settings==2.10.1",
|
|
"pyjwt==2.10.1",
|
|
"python-socketio==5.13.0",
|
|
"python-vlc==3.0.21203",
|
|
"sqlmodel==0.0.24",
|
|
"uvicorn[standard]==0.35.0",
|
|
"yt-dlp==2025.7.21",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"coverage==7.10.1",
|
|
"faker==37.4.2",
|
|
"httpx==0.28.1",
|
|
"mypy==1.17.0",
|
|
"pytest==8.4.1",
|
|
"pytest-asyncio==1.1.0",
|
|
"ruff==0.12.6",
|
|
]
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
exclude = ["venv", ".venv", "alembic"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
exclude = ["alembic"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["D100", "D103", "TRY301"]
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
"tests/**/*.py" = ["S101", "S105"]
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore:transaction already deassociated from connection:sqlalchemy.exc.SAWarning",
|
|
]
|