@@ -129,7 +129,7 @@ jobs:
129
129
-m unit
130
130
131
131
- name : Upload unit test coverage report to Codecov
132
- if : matrix.minimal_install == 'true'
132
+ if : ! matrix.minimal_install
133
133
uses : codecov/codecov-action@v5
134
134
with :
135
135
flags : " tests | unit | python-${{ matrix.python_version }}"
@@ -140,7 +140,7 @@ jobs:
140
140
verbose : true
141
141
142
142
- name : Upload unit test coverage report to Codecov (core)
143
- if : matrix.minimal_install != 'true'
143
+ if : matrix.minimal_install
144
144
uses : codecov/codecov-action@v5
145
145
with :
146
146
flags : " tests | unit | python-${{ matrix.python_version }} | core"
@@ -162,7 +162,7 @@ jobs:
162
162
-m end2end
163
163
164
164
- name : Upload end2end test coverage report to Codecov
165
- if : matrix.minimal_install == 'true'
165
+ if : ! matrix.minimal_install
166
166
uses : codecov/codecov-action@v5
167
167
with :
168
168
flags : " tests | integration | python-${{ matrix.python_version }}"
@@ -173,7 +173,7 @@ jobs:
173
173
verbose : true
174
174
175
175
- name : Upload end2end test coverage report to Codecov (core)
176
- if : matrix.minimal_install != 'true'
176
+ if : matrix.minimal_install
177
177
uses : codecov/codecov-action@v5
178
178
with :
179
179
flags : " tests | integration | python-${{ matrix.python_version }} | core"
0 commit comments