We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cdb38c commit a5af92cCopy full SHA for a5af92c
1 file changed
.github/workflows/tests.yml
@@ -28,3 +28,14 @@ jobs:
28
run: |
29
pip install ruff
30
ruff check lumix/ tests/
31
+ - name: Run tests with coverage
32
+ run: |
33
+ pytest tests/ --cov=lumix --cov-report=xml --cov-report=term
34
+ - name: Upload coverage to Codecov
35
+ uses: codecov/codecov-action@v5
36
+ with:
37
+ token: ${{ secrets.CODECOV_TOKEN }}
38
+ file: ./coverage.xml
39
+ flags: unittests
40
+ name: codecov-umbrella
41
+ fail_ci_if_error: false
0 commit comments