Testing
Creating a Project with Tests
uv init myapp --package
d myappmyapp/
├── pyproject.toml
├── README.md
└── src
└── myapp
└── __init__.pyAdding pytest as a Development Dependency
uv add --dev pytestCreating a Simple Module to Test
Creating Test Files
Configuring pytest
Running Tests
Last updated