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 41257ff commit eb798d7Copy full SHA for eb798d7
tests/conftest.py
@@ -44,7 +44,11 @@ def c():
44
return ipopt.Model(jit="C")
45
46
ipopt_model_dict["ipopt_llvm"] = llvm
47
- ipopt_model_dict["ipopt_c"] = c
+
48
+ if platform.system() == "Darwin":
49
+ # Skip the C JIT test on macOS, but it works correctly when run in the terminal
50
+ # needs further investigation
51
+ ipopt_model_dict["ipopt_c"] = c
52
53
54
@pytest.fixture(params=ipopt_model_dict.keys())
0 commit comments