Run tests with pytest and display coverage report.
# Run Python Tests Run tests with pytest and display coverage report. ## What This Command Does 1. Runs pytest with coverage enabled 2. Shows test results and coverage summary 3. Identifies uncovered code 4. Suggests improvements ## Usage I will execute: Or if uv is not available: ## Options You can specify: - **Test path**: `tests/unit/test_users.py` - **Test pattern**: `-k "test_create"` - **Parallel**: `-n auto` (with pytest-xdist) - **Stop on failure**: `-x` - **Show locals**: `-l` ## Coverage Report The command displays: - Files and their coverage percentage - Missing lin...