From: Steve Dower Date: Mon, 6 Jan 2020 21:23:10 +0000 (-0800) Subject: bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873) X-Git-Tag: v3.9.0a3~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1ce22d086660d2505010694c8813cc67adf8f9e;p=thirdparty%2FPython%2Fcpython.git bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873) https://bugs.python.org/issue39041 Automerge-Triggered-By: @zooba --- diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cb05e8e2f71f..e8b47b390e5a 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 }}