We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0611f0 commit e61c495Copy full SHA for e61c495
3 files changed
.github/workflows/ci.yml
@@ -52,8 +52,15 @@ 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.1.2
59
+ with:
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
+ env_vars: OS,PYTHON
62
+ fail_ci_if_error: true
63
+ verbose: true
64
release:
65
runs-on: ubuntu-latest
66
needs:
0 commit comments