diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-02-27 23:08:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 23:08:30 (GMT) |
commit | 766b7546a564c8e386a3c31eb06fc1b55e8f5a25 (patch) | |
tree | 00391dd04bbc08df63afae3e03e2aecb301ff7ad | |
parent | 374d998b507d34a6c0a3816a163926a8ba0c483f (diff) | |
download | cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.zip cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.gz cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.bz2 |
bpo-39704: Explicitly pass the path to codecov config (GH-18680)
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 | ||||
-rw-r--r-- | .github/workflows/coverage.yml | 4 | ||||
-rw-r--r-- | .travis.yml | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index a63659f..b6dde59 100644 --- a/.azure-pipelines/posix-steps.yml +++ b/.azure-pipelines/posix-steps.yml @@ -49,7 +49,7 @@ steps: - script: ./venv/bin/python -m coverage xml displayName: 'Generate coverage.xml' - - script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash) + - script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml displayName: 'Publish code coverage results' diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8e1b764..bf166ab 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -65,7 +65,7 @@ jobs: - name: 'Publish code coverage results' run: | source ./.venv/bin/activate - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -84,6 +84,6 @@ jobs: if: always() run: | make pythoninfo - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.travis.yml b/.travis.yml index b1d50d4..675e267 100644 --- a/.travis.yml +++ b/.travis.yml @@ -94,7 +94,7 @@ matrix: after_script: # Probably should be after_success once test suite updated to run under coverage.py. # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files. - source ./venv/bin/activate - - bash <(curl -s https://codecov.io/bash) + - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml - name: "Test code coverage (C)" os: linux language: c @@ -111,7 +111,7 @@ matrix: - xvfb-run make -j4 coverage-report after_script: # Probably should be after_success once test suite updated to run under coverage.py. - make pythoninfo - - bash <(curl -s https://codecov.io/bash) + - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml before_install: |