We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6573c29 commit 9a69803Copy full SHA for 9a69803
.github/workflows/test.yml
@@ -52,10 +52,10 @@ jobs:
52
run: |
53
if [ "${{ matrix.mpi_ranks }}" -eq 1 ]; then
54
echo "Running tests in single-process mode..."
55
- ./tests/unit_tests || exit 1
+ ./tests/unit_tests
56
else
57
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
+ mpirun --allow-run-as-root --oversubscribe -np ${{ matrix.mpi_ranks }} ./tests/unit_tests
59
fi
60
echo "✅ Tests completed with ${{ matrix.mpi_ranks }} rank(s)"
61
0 commit comments