Skip to content

Commit fb26b2f

Browse files
committed
Temporarily skip all _to_numpy tests on macOS
1 parent d0bad08 commit fb26b2f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pygmt/tests/test_clib_to_numpy.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
from pygmt.clib.conversion import _to_numpy
1414
from pygmt.helpers.testing import skip_if_no
1515

16+
# Skip all tests on macOS.
17+
pytestmark = pytest.mark.skipif(
18+
sys.platform == "darwin",
19+
reason="For unknown reasons, tests in the file cause unrelated failures on macOS.",
20+
)
21+
1622
try:
1723
import pyarrow as pa
1824

0 commit comments

Comments
 (0)