summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-01-06 13:42:37 -0800
committerGitHub <noreply@github.com>2020-01-06 13:42:37 -0800
commit676b16c14040ddb9a2ef3408e66a77c1dfb8e841 (patch)
tree067d58c265f9c5ef88647e4da4d23783f2e9ed3a
parentacf5e5f3f42a3d2985499df82331705edbe717be (diff)
downloadcpython-git-676b16c14040ddb9a2ef3408e66a77c1dfb8e841.tar.gz
bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873)
https://bugs.python.org/issue39041 Automerge-Triggered-By: @zooba (cherry picked from commit b1ce22d086660d2505010694c8813cc67adf8f9e) Co-authored-by: Steve Dower <steve.dower@python.org>
-rw-r--r--.github/workflows/coverage.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index cb05e8e2f7..e8b47b390e 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -64,7 +64,7 @@ jobs:
|| true
- name: 'Publish code coverage results'
run: |
- ./.venv/bin/python -m coverage xml
+ source ./.venv/bin/activate
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}