Skip to content

Commit

Permalink
math_opt: disable borken test with SCIP v900
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 21, 2024
1 parent b8635f7 commit e1457f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ortools/math_opt/solver_tests/callback_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,9 @@ TEST_P(CallbackTest, EventSolutionFilter) {
}

TEST_P(CallbackTest, EventNodeCut) {
if (GetParam().solver_type == SolverType::kGscip) {
GTEST_SKIP() << "This test does not work with SCIP v900";
}
if (!GetParam().supported_events.contains(CallbackEvent::kMipNode)) {
GTEST_SKIP() << "Test skipped because this solver does not support "
"CallbackEvent::kMipNode.";
Expand Down

0 comments on commit e1457f9

Please sign in to comment.