Skip to content

Commit 9a69803

Browse files
Remove explicit exit 1 from GitHub Actions workflow
Co-authored-by: ManuelLerchner <[email protected]>
1 parent 6573c29 commit 9a69803

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
run: |
5353
if [ "${{ matrix.mpi_ranks }}" -eq 1 ]; then
5454
echo "Running tests in single-process mode..."
55-
./tests/unit_tests || exit 1
55+
./tests/unit_tests
5656
else
5757
echo "Running tests with MPI (${{ matrix.mpi_ranks }} ranks)..."
58-
mpirun --allow-run-as-root --oversubscribe -np ${{ matrix.mpi_ranks }} ./tests/unit_tests || exit 1
58+
mpirun --allow-run-as-root --oversubscribe -np ${{ matrix.mpi_ranks }} ./tests/unit_tests
5959
fi
6060
echo "✅ Tests completed with ${{ matrix.mpi_ranks }} rank(s)"
6161

0 commit comments

Comments
 (0)