Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 13, 2025
1 parent 26514bf commit 6f5cad0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -129,7 +129,7 @@ jobs:
-m unit
- name: Upload unit test coverage report to Codecov
if: matrix.minimal_install == 'true'
if: (! matrix.minimal_install)
uses: codecov/codecov-action@v5
with:
flags: "tests | unit | python-${{ matrix.python_version }}"
@@ -140,7 +140,7 @@ jobs:
verbose: true

- name: Upload unit test coverage report to Codecov (core)
if: matrix.minimal_install != 'true'
if: matrix.minimal_install
uses: codecov/codecov-action@v5
with:
flags: "tests | unit | python-${{ matrix.python_version }} | core"
@@ -162,7 +162,7 @@ jobs:
-m end2end
- name: Upload end2end test coverage report to Codecov
if: matrix.minimal_install == 'true'
if: (! matrix.minimal_install)
uses: codecov/codecov-action@v5
with:
flags: "tests | integration | python-${{ matrix.python_version }}"
@@ -173,7 +173,7 @@ jobs:
verbose: true

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

0 comments on commit 6f5cad0

Please sign in to comment.