Skip to content
Snippets Groups Projects
Commit 5ff980bc authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

Separate other Python unit tests. Refs #6263

parent 1b75aa68
No related branches found
No related tags found
No related merge requests found
...@@ -409,6 +409,18 @@ set ( INC_FILES ...@@ -409,6 +409,18 @@ set ( INC_FILES
inc/MantidAlgorithms/XDataConverter.h inc/MantidAlgorithms/XDataConverter.h
) )
set(SRC_UNITY_IGNORE_FILES src/AlignDetectors.cpp
src/FFTSmooth.cpp
src/FFTSmooth2.cpp
src/FilterBadPulses.cpp
src/SetUncertainties.cpp
)
if(UNITY_BUILD)
include(UnityBuild)
enable_unity_build(Algorithms SRC_FILES SRC_UNITY_IGNORE_FILES 10)
endif(UNITY_BUILD)
set ( TEST_FILES set ( TEST_FILES
# CalMuonDeadTimeTest.h # CalMuonDeadTimeTest.h
# CountEventsInPulsesTest.h # CountEventsInPulsesTest.h
...@@ -590,21 +602,7 @@ set ( TEST_FILES ...@@ -590,21 +602,7 @@ set ( TEST_FILES
WorkspaceGroupTest.h WorkspaceGroupTest.h
) )
set(SRC_UNITY_IGNORE_FILES src/AlignDetectors.cpp set ( TEST_PY_FILES NormaliseToUnityTest.py )
src/FFTSmooth.cpp
src/FFTSmooth2.cpp
src/FilterBadPulses.cpp
src/SetUncertainties.cpp
)
# Python unit tests
set ( TEST_PY_FILES NormaliseToUnityTest.py
)
if(UNITY_BUILD)
include(UnityBuild)
enable_unity_build(Algorithms SRC_FILES SRC_UNITY_IGNORE_FILES 10)
endif(UNITY_BUILD)
# Add a precompiled header where they are supported # Add a precompiled header where they are supported
ADD_PRECOMPILED_HEADER( inc/MantidAlgorithms/PrecompiledHeader.h MantidAlgorithms src/PrecompiledHeader.cpp SRC_FILES INC_FILES ) ADD_PRECOMPILED_HEADER( inc/MantidAlgorithms/PrecompiledHeader.h MantidAlgorithms src/PrecompiledHeader.cpp SRC_FILES INC_FILES )
......
...@@ -45,10 +45,6 @@ endif () ...@@ -45,10 +45,6 @@ endif ()
# python unit tests # python unit tests
if (PYUNITTEST_FOUND) if (PYUNITTEST_FOUND)
pyunittest_add_test ( AlgorithmPythonUnitTests.py ${TEST_PY_FILES} ) pyunittest_add_test_two ( ${CMAKE_CURRENT_SOURCE_DIR} AlgorithmsPythonTest ${TEST_PY_FILES} )
add_dependencies ( AlgorithmPythonUnitTests.py PythonAPI )
add_dependencies ( FrameworkTests AlgorithmPythonUnitTests.py )
# Add to the 'UnitTests' group in VS
set_property ( TARGET AlgorithmPythonUnitTests.py PROPERTY FOLDER "UnitTests" )
endif () endif ()
...@@ -37,12 +37,11 @@ set ( INC_FILES ...@@ -37,12 +37,11 @@ set ( INC_FILES
# Python files that need copying across # Python files that need copying across
set ( PY_FILES MantidFramework.py __init__.py setup.py mantidsimple.py) set ( PY_FILES MantidFramework.py __init__.py setup.py mantidsimple.py)
# cxxtest unit tests if(UNITY_BUILD)
set ( TEST_FILES include(UnityBuild)
PythonFrameworkTests.h enable_unity_build(PythonAPI SRC_FILES SRC_UNITY_IGNORE_FILES 10)
) endif(UNITY_BUILD)
# Python unit tests
set ( TEST_PY_FILES set ( TEST_PY_FILES
GoniometerTest.py GoniometerTest.py
ImportTest.py ImportTest.py
...@@ -63,10 +62,7 @@ set ( TEST_PY_FILES ...@@ -63,10 +62,7 @@ set ( TEST_PY_FILES
WorkspaceHistoryTest.py WorkspaceHistoryTest.py
) )
if(UNITY_BUILD)
include(UnityBuild)
enable_unity_build(PythonAPI SRC_FILES SRC_UNITY_IGNORE_FILES 10)
endif(UNITY_BUILD)
########################################################################### ###########################################################################
# Clear stale pyc files # Clear stale pyc files
......
# cxxtest unit tests
if ( CXXTEST_FOUND ) if ( CXXTEST_FOUND )
include_directories ( SYSTEM ${CXXTEST_INCLUDE_DIR} ${GMOCK_INCLUDE_DIR} ${GTEST_INCLUDE_DIR} ) set ( TEST_FILES
PythonFrameworkTests.h
)
include_directories ( SYSTEM ${CXXTEST_INCLUDE_DIR} ${GMOCK_INCLUDE_DIR} ${GTEST_INCLUDE_DIR} )
include_directories ( ../../TestHelpers/inc ) include_directories ( ../../TestHelpers/inc )
cxxtest_add_test ( PythonAPITest ${TEST_FILES} ) cxxtest_add_test ( PythonAPITest ${TEST_FILES} )
target_link_libraries( PythonAPITest PythonAPI ) target_link_libraries( PythonAPITest PythonAPI )
...@@ -12,13 +16,9 @@ if ( CXXTEST_FOUND ) ...@@ -12,13 +16,9 @@ if ( CXXTEST_FOUND )
set_property ( TARGET PythonAPITest PROPERTY FOLDER "UnitTests" ) set_property ( TARGET PythonAPITest PROPERTY FOLDER "UnitTests" )
endif () endif ()
# python unit tests # Python unit tests
if (PYUNITTEST_FOUND) if (PYUNITTEST_FOUND)
pyunittest_add_test ( VanillaPythonTest.py ${TEST_PY_FILES} "" ) # Add test targets
add_dependencies ( VanillaPythonTest.py PythonAPI Algorithms ) pyunittest_add_test_two ( ${CMAKE_CURRENT_SOURCE_DIR} PythonAPI ${TEST_PY_FILES} )
add_dependencies ( FrameworkTests VanillaPythonTest.py )
# Add to the 'UnitTests' group in VS
set_property ( TARGET PrepareVanillaPythonTest.py PROPERTY FOLDER "UnitTests/Python" )
set_property ( TARGET VanillaPythonTest.py PROPERTY FOLDER "UnitTests/Python" )
endif () endif ()
...@@ -67,7 +67,10 @@ set ( INC_FILES ...@@ -67,7 +67,10 @@ set ( INC_FILES
set ( TEST_FILES SANSSolidAngleCorrectionTest.h ) set ( TEST_FILES SANSSolidAngleCorrectionTest.h )
set ( TEST_PY_FILES EQSANSQ2DTest.py SANSBeamFluxCorrectionTest.py ) set ( TEST_PY_FILES
EQSANSQ2DTest.py
SANSBeamFluxCorrectionTest.py
)
if(UNITY_BUILD) if(UNITY_BUILD)
include(UnityBuild) include(UnityBuild)
......
...@@ -12,10 +12,6 @@ endif () ...@@ -12,10 +12,6 @@ endif ()
# python unit tests # python unit tests
if (PYUNITTEST_FOUND) if (PYUNITTEST_FOUND)
pyunittest_add_test ( PythonWorkflowAlgorithmsTest.py ${TEST_PY_FILES} ) pyunittest_add_test_two ( ${CMAKE_CURRENT_SOURCE_DIR} PythonWorkflowAlgorithmsTest ${TEST_PY_FILES} )
add_dependencies ( PythonWorkflowAlgorithmsTest.py PythonAPI )
add_dependencies ( FrameworkTests PythonWorkflowAlgorithmsTest.py )
# Add to the 'UnitTests' group in VS
set_property ( TARGET PythonWorkflowAlgorithmsTest.py PROPERTY FOLDER "UnitTests" )
endif () endif ()
...@@ -2,12 +2,7 @@ set ( TEST_PY_FILES test/ReducerTest.py ) ...@@ -2,12 +2,7 @@ set ( TEST_PY_FILES test/ReducerTest.py )
# python unit tests # python unit tests
if (PYUNITTEST_FOUND) if (PYUNITTEST_FOUND)
pyunittest_add_test ( PythonReductionTest.py ${TEST_PY_FILES} ) pyunittest_add_test_two ( ${CMAKE_CURRENT_SOURCE_DIR}/test PythonScriptsTest ${TEST_PY_FILES} )
add_dependencies ( PythonReductionTest.py PythonAPI )
add_dependencies ( FrameworkTests PythonReductionTest.py )
# Add to the 'UnitTests' group in VS
set_property ( TARGET PreparePythonReductionTest.py PROPERTY FOLDER "UnitTests/Python" )
set_property ( TARGET PythonReductionTest.py PROPERTY FOLDER "UnitTests/Python" )
endif () endif ()
# Ensure we don't get stale pyc files around # Ensure we don't get stale pyc files around
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment