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 615e0c1 commit fe2e2b0Copy full SHA for fe2e2b0
1 file changed
.github/workflows/on-push.yml
@@ -93,7 +93,12 @@ jobs:
93
- name: Setup Python
94
uses: ./.github/actions/setup-python
95
- name: PyTest
96
- run: poetry run pytest python/tests
+ run: poetry run pytest python/tests --cov=python --cov-report=xml
97
+ - name: Upload python coverage to Codecov
98
+ uses: codecov/codecov-action@v3
99
+ with:
100
+ token: ${{ secrets.CODECOV_TOKEN }}
101
+ verbose: true
102
103
# constraints:
104
# needs: setup-js
0 commit comments