File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 49
49
- script : ./venv/bin/python -m coverage xml
50
50
displayName : ' Generate coverage.xml'
51
51
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
53
53
displayName : ' Publish code coverage results'
54
54
55
55
Original file line number Diff line number Diff line change 65
65
- name : ' Publish code coverage results'
66
66
run : |
67
67
source ./.venv/bin/activate
68
- bash <(curl -s https://codecov.io/bash)
68
+ bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
69
69
env :
70
70
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
71
71
84
84
if : always()
85
85
run : |
86
86
make pythoninfo
87
- bash <(curl -s https://codecov.io/bash)
87
+ bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
88
88
env :
89
89
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ matrix:
94
94
after_script : # Probably should be after_success once test suite updated to run under coverage.py.
95
95
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
96
96
- source ./venv/bin/activate
97
- - bash <(curl -s https://codecov.io/bash)
97
+ - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
98
98
- name : " Test code coverage (C)"
99
99
os : linux
100
100
language : c
@@ -111,7 +111,7 @@ matrix:
111
111
- xvfb-run make -j4 coverage-report
112
112
after_script : # Probably should be after_success once test suite updated to run under coverage.py.
113
113
- make pythoninfo
114
- - bash <(curl -s https://codecov.io/bash)
114
+ - bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml
115
115
116
116
117
117
before_install :
You can’t perform that action at this time.
0 commit comments