Skip to content

Commit

Permalink
output on failure for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
V. Raffuzzi committed Dec 18, 2024
1 parent b93935b commit c8801ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cd build
cmake ..
make -j
make test
ctest --output-on-faliure
cd -
build-and-test-debug:
runs-on: ubuntu-20.04
Expand All @@ -36,7 +36,7 @@ jobs:
cd build
cmake -DDEBUG=ON ..
make -j
make test
ctest --verbose --output-on-faliure
cd -
build-and-test-no-openmp:
runs-on: ubuntu-20.04
Expand All @@ -50,5 +50,5 @@ jobs:
cd build
cmake -DOPENMP=OFF ..
make -j
make test
ctest --output-on-faliure
cd -

0 comments on commit c8801ee

Please sign in to comment.