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 f4c6b5f commit 6472d17Copy full SHA for 6472d17
.github/workflows/test_release.yml
@@ -66,6 +66,8 @@ jobs:
66
- name: Upload Code Coverage
67
if: github.event_name == 'schedule'
68
run: tox -e upload-coverage
69
+ env:
70
+ CODECOV_UPLOAD_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
71
72
release:
73
needs: [test, lint]
tox.ini
@@ -142,9 +142,10 @@ commands = python scripts/release.py {posargs}
142
basepython = python3
143
deps =
144
codecov
145
-# Token not required public repos uploading from GH Actions.
+passenv =
146
+ CODECOV_UPLOAD_TOKEN
147
commands =
- codecov
148
+ codecov -t {env:CODECOV_UPLOAD_TOKEN:}
149
150
[testenv:docstyle]
151
deps = pydocstyle
0 commit comments