Skip to content

Commit

Permalink
More CI fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Feb 18, 2024
1 parent ac63a45 commit f25c51c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-arm-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ jobs:
TEST_TARGETS: ${{ matrix.tests }}
run: |
ctest --test-dir build -C Release -R ${TEST_TARGETS// /|} --show-only
ctest --test-dir build -C Release -R ${TEST_TARGETS// /|} -j 4 --output-on-failure
ctest --test-dir build -C Release -R ${TEST_TARGETS// /|} -j 4 --no-tests=error --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
BUILD_TYPE: ${{ matrix.build_type }}
run: |
ctest --test-dir build -C $BUILD_TYPE -R ${TEST_TARGETS// /|} --show-only
ctest --test-dir build -C $BUILD_TYPE -R ${TEST_TARGETS// /|} -j 4 --output-on-failure
ctest --test-dir build -C $BUILD_TYPE -R ${TEST_TARGETS// /|} -j 4 --no-tests=error --output-on-failure
- name: "Run Live GUI Test"
if: matrix.live_gui
Expand Down
6 changes: 3 additions & 3 deletions cmake/test/SetupCatchTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ function(setup_catch_test_base target)
)

if(NOT (CMAKE_GENERATOR STREQUAL Xcode))
# catch_discover_tests(${target}
# TEST_PREFIX ${target}_
# )
catch_discover_tests(${target}
TEST_PREFIX ${target}_
)
endif()
endfunction(setup_catch_test_base)

Expand Down

0 comments on commit f25c51c

Please sign in to comment.