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 fc4d36a commit d42b8b6Copy full SHA for d42b8b6
3 files changed
.github/workflows/coverage_report.yml
@@ -0,0 +1,13 @@
1
+name: Manual CodeCov Coverage Report Generation
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ create-report:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Upload coverage reports to Codecov
11
+ uses: codecov/codecov-action@v5
12
+ with:
13
+ token: ${{ secrets.CODECOV_TOKEN }}
.github/workflows/pythonpublish.yml
@@ -49,3 +49,12 @@ jobs:
49
run: |
50
python setup.py sdist bdist_wheel
51
twine upload dist/*
52
53
+ # post-deploy:
54
+ # needs: deploy
55
+ # runs-on: ubuntu-latest
56
+ # steps:
57
+ # - name: Upload coverage reports to Codecov
58
+ # uses: codecov/codecov-action@v5
59
+ # with:
60
+ # token: ${{ secrets.CODECOV_TOKEN }}
conftest.py
0 commit comments