2d0e2c64e6
- tests/: 107 unit tests across config, cache, docker_auth, storage, and FastAPI routes; all passing under pytest-asyncio auto mode - tox.ini: runs pytest via uvx --with tox-uv tox (py311) - .pre-commit-config.yaml: ruff lint + ruff-format at v0.15.12 - pyproject.toml: pytest config (asyncio_mode=auto), ruff config (line-length=140), tox/pre-commit added to dev extras - Makefile: test/tox/pre-commit targets via uvx --python 3.11 - Source files reformatted by ruff-format (no logic changes)
9 lines
106 B
INI
9 lines
106 B
INI
[tox]
|
|
envlist = py311
|
|
isolated_build = true
|
|
|
|
[testenv]
|
|
extras = dev
|
|
commands =
|
|
pytest {posargs:tests}
|