Skip to content

Commit b3802cc

Browse files
[HOTFIX] Possible hotfix for CI/CD false-positive regression
Changes in file .github/workflows/Tests.yml: * minor hotfix for coverage testing to use bash shell
1 parent bed03a7 commit b3802cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/Tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,11 @@ jobs:
213213
run: make -j1 -f Makefile clean || true ;
214214
- name: Generate Test Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
215215
id: coverage_tests
216+
shell: bash
216217
env:
217218
TESTS_USE_PYTEST: 1
218-
run: make -f Makefile test || exit 1 ;
219+
run: |
220+
make -f Makefile test || exit 1
219221
- name: Upload Python ${{ matrix.python-version }} test coverage to Codecov
220222
id: coverage-unittests-codecov-upload
221223
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3

0 commit comments

Comments
 (0)