8000 bpo-39704: Explicitly pass the path to codecov config (GH-18680) · python/cpython@766b754 · GitHub
[go: up one dir, main page]

Skip to content

Commit 766b754

Browse files
authored
bpo-39704: Explicitly pass the path to codecov config (GH-18680)
1 parent 374d998 commit 766b754

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.azure-pipelines/posix-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ steps:
4949
- script: ./venv/bin/python -m coverage xml
5050
displayName: 'Generate coverage.xml'
5151

52-
- script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash)
52+
- script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
5353
displayName: 'Publish code coverage results'
5454

5555

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: 'Publish code coverage results'
6666
run: |
6767
source ./.venv/bin/activate
68-
bash <(curl -s https://codecov.io/bash)
68+
bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
6969
env:
7070
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7171

@@ -84,6 +84,6 @@ jobs:
8484
if: always()
8585
run: |
8686
make pythoninfo
87-
bash <(curl -s https://codecov.io/bash)
87+
bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
8888
env:
8989
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ matrix:
9494
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
9595
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
9696
- source ./venv/bin/activate
97-
- bash <(curl -s https://codecov.io/bash)
97+
- bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
9898
- name: "Test code coverage (C)"
9999
os: linux
100100
language: c
@@ -111,7 +111,7 @@ matrix:
111111
- xvfb-run make -j4 coverage-report
112112
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
113113
- make pythoninfo
114-
- bash <(curl -s https://codecov.io/bash)
114+
- bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
115115

116116

117117
before_install:

0 commit comments

Comments
 (0)
0