Skip to content

Commit bdf0b5e

Browse files
Skip test_sim on mac (#339)
1 parent 4b207b0 commit bdf0b5e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/test_sim.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
from __future__ import annotations
22

3+
import sys
4+
5+
import pytest
36
import xarray
47

58
import openlifu
69

710

11+
@pytest.mark.skipif(
12+
sys.platform == 'darwin',
13+
reason=(
14+
"This test is skipped on macOS due to some unresolved known issues with kwave."
15+
" See https://github.com/OpenwaterHealth/OpenLIFU-python/pull/259#issuecomment-2923230777"
16+
)
17+
)
818
def test_run_simulation_runs():
919
"""Test that run_simulation can run and outputs something of the correct type."""
1020

0 commit comments

Comments
 (0)