We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0611f0 commit 0292ee7Copy full SHA for 0292ee7
.github/workflows/ci.yml
@@ -52,8 +52,12 @@ jobs:
52
run: poetry install
53
shell: bash
54
- name: Test with Pytest
55
- run: poetry run pytest
+ run: poetry run pytest --cov=roborock --cov-branch --cov-report=xml
56
57
+ - name: Upload coverage reports to Codecov
58
+ uses: codecov/codecov-action@v5
59
+ with:
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
release:
62
runs-on: ubuntu-latest
63
needs:
0 commit comments