Skip to content

Commit

Permalink
Make ipc darwin specific
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Dec 10, 2024
1 parent ef16ead commit 8b9a9ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ert/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,8 @@ class MockESConfig(EvaluatorServerConfig):
def __init__(self, *args, **kwargs):
if "use_token" not in kwargs:
kwargs["use_token"] = False
kwargs["use_ipc_protocol"] = True
if sys.platform != "linux":
kwargs["use_ipc_protocol"] = True
super().__init__(*args, **kwargs)

monkeypatch.setattr("ert.cli.main.EvaluatorServerConfig", MockESConfig)
Expand Down

0 comments on commit 8b9a9ab

Please sign in to comment.