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 da7888a commit 88b3d80Copy full SHA for 88b3d80
ortools/algorithms/python/CMakeLists.txt
@@ -33,6 +33,9 @@ add_library(${PROJECT_NAMESPACE}::knapsack_solver_pybind11 ALIAS knapsack_solver
33
34
if(BUILD_TESTING)
35
file(GLOB PYTHON_SRCS "*_test.py")
36
+ if(NOT USE_SCIP)
37
+ list(FILTER PYTHON_SRCS EXCLUDE REGEX "knapsack_solver_test.py$")
38
+ endif()
39
foreach(FILE_NAME IN LISTS PYTHON_SRCS)
40
add_python_test(FILE_NAME ${FILE_NAME})
41
endforeach()
0 commit comments