File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,11 @@ jobs:
101
101
- name : tox -e ${{ matrix.passed_name }}
102
102
run : python3 -m tox -e ${{ matrix.passed_name }}
103
103
104
+ - name : Combine coverage data
105
+ if : ${{ startsWith(matrix.passed_name, 'py') }}
106
+ # produce a single .coverage file at repo root
107
+ run : tox -e coverage
108
+
104
109
- name : Upload coverage data
105
110
if : ${{ startsWith(matrix.passed_name, 'py') }}
106
111
Original file line number Diff line number Diff line change 3
3
require_ci_to_pass : true
4
4
comment : false
5
5
coverage :
6
+ range : 43..100
6
7
status :
7
8
patch : false
8
- project :
9
- default :
10
- threshold : 0.3%
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ required-version = "0.0.292"
132
132
select = [" ALL" ]
133
133
ignore = [
134
134
" E501" , # we use black
135
- # temporary disabled until we fix them:
135
+ # temporary disabled until we fix them:
136
136
" ANN" ,
137
137
" ARG" ,
138
138
" B" ,
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ commands_pre =
110
110
commands =
111
111
python3 -m coverage --version
112
112
# needed by codecov github actions, also ignored result to reach report one.
113
- python3 -m coverage xml -- fail-under =0
113
+ python3 -m coverage xml
114
114
# just for humans running it:
115
115
python3 -m coverage report
116
116
deps =
You can’t perform that action at this time.
0 commit comments