File tree Expand file tree Collapse file tree 5 files changed +24
-104
lines changed
Expand file tree Collapse file tree 5 files changed +24
-104
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ jobs:
148148
149149 - name : Code Coverage Run
150150 run : |
151+ python -m pip install gcovr
151152 conan install \
152153 -o prerelease=${{ inputs.prerelease }} \
153154 -o malloc_impl=${{ inputs.malloc-impl }} \
@@ -156,11 +157,12 @@ jobs:
156157 --build missing \
157158 .
158159 conan build .
160+ gcovr --cobertura ./coverage.xml
159161 if : ${{ inputs.testing == 'True' && inputs.tooling == 'Coverage' }}
160162
161163 - name : Upload coverage reports to Codecov
162- uses : codecov/codecov-action@v4
164+ uses : codecov/codecov-action@v5
163165 with :
164- token : ${{ secrets.CODECOV_TOKEN }}
165- gcov : true
166+ files : ./coverage.xml
167+ disable_search : true
166168 if : ${{ inputs.testing == 'True' && inputs.tooling == 'Coverage' }}
Original file line number Diff line number Diff line change 99
1010class SISLConan (ConanFile ):
1111 name = "sisl"
12- version = "12.4.8 "
12+ version = "12.4.9 "
1313
1414 homepage = "https://github.com/eBay/sisl"
1515 description = "Library for fast data structures, utilities"
Original file line number Diff line number Diff line change 1+ high-threshold = 80
2+ medium-threshold = 65
3+
4+ merge-lines = yes
5+
6+ exclude = .*build.*
7+ exclude = .*flip.*
8+ exclude = .*generate.*
9+ exclude = .*test.*
10+ exclude = .*backtrace.cpp
11+ exclude = .*stacktrace.*
12+ exclude = .*callback_mutex.hpp
13+
14+ exclude-lines-by-pattern = .*DEBUG.*
15+ exclude-lines-by-pattern = .*DBG.*
16+ exclude-lines-by-pattern = .*LOG.*
17+
18+ gcov-ignore-parse-errors = all
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments