Skip to content

Commit 30ab884

Browse files
committed
Bugfix
1 parent 26514bf commit 30ab884

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
-m unit
130130
131131
- name: Upload unit test coverage report to Codecov
132-
if: matrix.minimal_install == 'true'
132+
if: ! matrix.minimal_install
133133
uses: codecov/codecov-action@v5
134134
with:
135135
flags: "tests | unit | python-${{ matrix.python_version }}"
@@ -140,7 +140,7 @@ jobs:
140140
verbose: true
141141

142142
- name: Upload unit test coverage report to Codecov (core)
143-
if: matrix.minimal_install != 'true'
143+
if: matrix.minimal_install
144144
uses: codecov/codecov-action@v5
145145
with:
146146
flags: "tests | unit | python-${{ matrix.python_version }} | core"
@@ -162,7 +162,7 @@ jobs:
162162
-m end2end
163163
164164
- name: Upload end2end test coverage report to Codecov
165-
if: matrix.minimal_install == 'true'
165+
if: ! matrix.minimal_install
166166
uses: codecov/codecov-action@v5
167167
with:
168168
flags: "tests | integration | python-${{ matrix.python_version }}"
@@ -173,7 +173,7 @@ jobs:
173173
verbose: true
174174

175175
- name: Upload end2end test coverage report to Codecov (core)
176-
if: matrix.minimal_install != 'true'
176+
if: matrix.minimal_install
177177
uses: codecov/codecov-action@v5
178178
with:
179179
flags: "tests | integration | python-${{ matrix.python_version }} | core"

0 commit comments

Comments
 (0)