test: add coverage reporting

This commit is contained in:
2026-06-21 14:25:02 +03:30
parent 24ee55a069
commit d04dca2646
4 changed files with 37 additions and 0 deletions

View File

@@ -133,6 +133,13 @@ $env:TEST_DATABASE_ENGINE="sqlite"
python -m pytest
```
Run pytest with coverage:
```powershell
$env:TEST_DATABASE_ENGINE="sqlite"
python -m pytest --cov --cov-report=term-missing
```
Run worker locally:
```powershell