python-tdd-with-uv
Installation
SKILL.md
Python TDD with uv
Write Python code test-first using uv for fast dependency and environment management.
Setting Up the Project
- Check if
uvis installed:uv --version - If the project doesn't have a
pyproject.toml, initialize:uv init - Add pytest as a dev dependency:
uv add --dev pytest pytest-cov - Confirm the test runner works:
uv run pytest --co