We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4768d commit a083c43Copy full SHA for a083c43
1 file changed
.github/workflows/coveralls.yaml
@@ -27,11 +27,10 @@ jobs:
27
run: |
28
pdm install
29
- name: generate coverage report
30
- env:
31
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
33
pdm run coverage run --source=feeph.i2c -m pytest tests/
34
- pdm run coveralls
+ # coveralls recognizes the presence of .coverage but claims there
+ # is nothing to report; creating a report in lcov format fixes that
35
mkdir -p coverage
36
pdm run coverage-lcov --output_file_path=coverage/lcov.info
37
- name: coveralls action
0 commit comments