Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/test_recipe_structured_optimization_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pytest
from helpers.utils import bin_packing_model

from pyscipopt import SCIP_PARAMSETTING
from pyscipopt.recipes.structured_optimization_trace import (
attach_structured_optimization_trace,
structured_optimization_trace,
Expand Down Expand Up @@ -147,7 +148,7 @@ def test_structured_optimization_trace_records_run_end_on_exception():

def test_structured_optimization_trace_reuses_handler_for_repeated_contexts(tmp_path):
model = _model()
model.setParam("limits/time", 1)
model.setPresolve(SCIP_PARAMSETTING.OFF)
first_path = tmp_path / "first.jsonl"
second_path = tmp_path / "second.jsonl"

Expand Down
Loading