diff options
author | Steve Dower <steve.dower@python.org> | 2020-01-06 21:23:10 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-06 21:23:10 (GMT) |
commit | b1ce22d086660d2505010694c8813cc67adf8f9e (patch) | |
tree | c32f71ffeb12fad4c6456b9a6bc8bcd53e77050d /.github | |
parent | 2e9012a3e1e316c54e27f51ba5849ba06eab7da2 (diff) | |
download | cpython-b1ce22d086660d2505010694c8813cc67adf8f9e.zip cpython-b1ce22d086660d2505010694c8813cc67adf8f9e.tar.gz cpython-b1ce22d086660d2505010694c8813cc67adf8f9e.tar.bz2 |
bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873)
https://bugs.python.org/issue39041
Automerge-Triggered-By: @zooba
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/coverage.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cb05e8e..e8b47b3 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 }} |