Skip to content

Commit

Permalink
Merge pull request #2777 from MRtrix3/fixfailuretests
Browse files Browse the repository at this point in the history
Output error messages in CI checks
  • Loading branch information
Lestropie authored Jan 16, 2024
2 parents a51b036 + e3aec8a commit 58f6bbf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
run: cmake --build build

- name: unit tests
run: cd build && ctest -R unit
run: cd build && ctest -R unit --output-on-failure

- name: binary tests
run: cd build && ctest -R bin
run: cd build && ctest -R bin --output-on-failure

linux-gcc-build:

Expand Down Expand Up @@ -103,10 +103,10 @@ jobs:
run: cmake --build build

- name: unit tests
run: cd build && ctest -R unit
run: cd build && ctest -R unit --output-on-failure

- name: binary tests
run: cd build && ctest -R bin
run: cd build && ctest -R bin --output-on-failure

macos-build:

Expand Down Expand Up @@ -154,10 +154,10 @@ jobs:
run: cmake --build build

- name: unit tests
run: cd build && ctest -R unit
run: cd build && ctest -R unit --output-on-failure

- name: binary tests
run: cd build && ctest -R bin
run: cd build && ctest -R bin --output-on-failure

- name: check command documentation
run: ./docs/generate_user_docs.sh --build-dir ./build && git diff --exit-code docs/
Expand Down Expand Up @@ -224,10 +224,10 @@ jobs:
run: cmake --build build

- name: unit tests
run: cd build && ctest -R unit
run: cd build && ctest -R unit --output-on-failure

- name: binary tests
run: cd build && ctest -R bin
run: cd build && ctest -R bin --output-on-failure

secondary-checks:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 58f6bbf

Please sign in to comment.