We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f78088b commit 3aa3cd6Copy full SHA for 3aa3cd6
Framework/PythonInterface/test/python/mantid/api/CMakeLists.txt
@@ -8,7 +8,6 @@ set(TEST_PY_FILES
8
AlgorithmHistoryTest.py
9
AlgorithmManagerTest.py
10
AlgorithmPropertyTest.py
11
- AlgoRegisterTest.py
12
AnalysisDataServiceTest.py
13
AnalysisDataServiceObserverTest.py
14
AxisTest.py
@@ -57,6 +56,11 @@ set(TEST_PY_FILES
57
56
WorkspaceValidatorsTest.py
58
)
59
+option(PROFILE_ALGORITHM_LINUX "Profile algorithm execution on Linux" OFF)
60
+if(PROFILE_ALGORITHM_LINUX)
61
+ set(TEST_PY_FILES "${TEST_PY_FILES}" "AlgoRegisterTest.py")
62
+endif()
63
+
64
check_tests_valid(${CMAKE_CURRENT_SOURCE_DIR} ${TEST_PY_FILES})
65
66
# Prefix for test=PythonInterfaceAPI
0 commit comments