Skip to content

Commit

Permalink
Disable tcc jit pytest on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
metab0t committed Nov 24, 2024
1 parent 41257ff commit 143e5e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ def c():
return ipopt.Model(jit="C")

ipopt_model_dict["ipopt_llvm"] = llvm
ipopt_model_dict["ipopt_c"] = c

if platform.system() != "Darwin":
# Skip the C JIT test on macOS, but it works correctly when run in the terminal
# needs further investigation
ipopt_model_dict["ipopt_c"] = c


@pytest.fixture(params=ipopt_model_dict.keys())
Expand Down

0 comments on commit 143e5e5

Please sign in to comment.