We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19200dd commit 1ec03c6Copy full SHA for 1ec03c6
.github/workflows/ci.yml
@@ -47,8 +47,15 @@ jobs:
47
activate-environment: true
48
- run: uv pip install pip
49
- name: Test with Pytest
50
- run: uv run pytest --log-cli-level=DEBUG -vv -s
+ run: uv run pytest --log-cli-level=DEBUG -vv -s --cov --cov-branch --cov-report=xml
51
shell: bash
52
+ - name: Upload results to Codecov
53
+ uses: codecov/codecov-action@v5
54
+ with:
55
+ token: ${{ secrets.CODECOV_TOKEN }}
56
+ slug: Python-roborock/python-roborock
57
+
58
59
60
build:
61
name: Build Package
pyproject.toml
@@ -54,6 +54,7 @@ dev = [
"pdoc>=15.0.4,<16",
"pyyaml>=6.0.3",
"pyshark>=0.6",
+ "pytest-cov>=7.0.0",
]
[tool.hatch.build.targets.sdist]
0 commit comments