We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2fbd4 commit fa03cebCopy full SHA for fa03ceb
1 file changed
tests/conftest.py
@@ -45,9 +45,9 @@ def nlp_model_ctor(request):
45
if mosek.is_library_loaded():
46
model_interface_dict_full["mosek"] = mosek.Model
47
if highs.is_library_loaded():
48
- model_interface_dict["highs"] = highs.Model
+ model_interface_dict_full["highs"] = highs.Model
49
if knitro.is_library_loaded() and knitro.has_valid_license():
50
- model_interface_dict["knitro"] = knitro.Model
+ model_interface_dict_full["knitro"] = knitro.Model
51
52
53
@pytest.fixture(params=model_interface_dict_full.keys())
0 commit comments