Skip to content

Commit

Permalink
Re-enable Unit Testing
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson committed Dec 21, 2023
1 parent d1fb917 commit 4c403a1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
cmake --build --preset ci-macos-x64
- name: Test
run: |
ctest --preset ci-macos-x64 --verbose
ctest --preset ci-macos-x64
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
},
"Python3_EXECUTABLE": {
"type": "PATH",
"value": "/home/runner/hostedtoolcache/Python/3.10.13/x64/bin/python3.10"
"value": "/opt/hostedtoolcache/Python/3.10.13/x64/bin/python3.10"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/ComplexCore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ create_complex_plugin(NAME ${PLUGIN_NAME}
# Add in the unit tests for the filters included in this plugin
if(COMPLEX_BUILD_TESTS)
enable_testing()
# add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
endif()

#------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/ITKImageProcessing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ source_group(TREE "${${PLUGIN_NAME}_SOURCE_DIR}/src/${PLUGIN_NAME}" PREFIX ${PLU
# Add in the unit tests for the filters included in this plugin
if(COMPLEX_BUILD_TESTS)
enable_testing()
# add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
endif()

# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/OrientationAnalysis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ target_include_directories(${PLUGIN_NAME}
# Add in the unit tests for the filters included in this plugin
if(COMPLEX_BUILD_TESTS)
enable_testing()
# add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
add_subdirectory(${${PLUGIN_NAME}_SOURCE_DIR}/test)
endif()

# -----------------------------------------------------------------------
Expand Down

0 comments on commit 4c403a1

Please sign in to comment.