Re-run failed test cases verbosely

Verbose output will make it easier to determine why test cases are
failing (especially when they only fail in the CI system).
This commit is contained in:
John Poole 2021-09-25 19:25:01 -04:00
parent d33a46556a
commit d18a02ed63

View File

@ -32,7 +32,7 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{env.BUILD_TYPE}}
run: ctest -C ${{env.BUILD_TYPE}} --rerun-failed --output-on-failure