Skip to content

Commit 21894cf

Browse files
committed
chore: add coverage command to justfile
Add `just coverage` command that runs pytest with: - Terminal coverage report for quick feedback - JSON report for CI badge generation - HTML report for detailed analysis
1 parent 6e287e6 commit 21894cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

justfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ lint-fix:
1414
test:
1515
uv run pytest
1616

17+
# Run tests with coverage
18+
coverage:
19+
uv run pytest --cov --cov-report=term --cov-report=json --cov-report=html
20+
1721
# Run tool-specific tests
1822
test-tools:
1923
uv run pytest tests

0 commit comments

Comments
 (0)