Skip to content

Commit ebab919

Browse files
committed
Mark two contour tests as xfail on Linux ARM
1 parent 633afbc commit ebab919

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pygmt/tests/test_contour.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Test Figure.contour.
33
"""
44

5+
import platform
56
from pathlib import Path
67

78
import numpy as np
@@ -30,6 +31,7 @@ def fixture_region():
3031

3132

3233
@pytest.mark.mpl_image_compare
34+
@pytest.mark.skipif(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
3335
def test_contour_vec(region):
3436
"""
3537
Plot an x-centered gaussian kernel with different y scale.
@@ -130,6 +132,7 @@ def test_contour_multiple_levels(region):
130132

131133

132134
@pytest.mark.mpl_image_compare(filename="test_contour_vec.png")
135+
@pytest.mark.skipif(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
133136
def test_contour_incols_transposed_data(region):
134137
"""
135138
Make sure that transposing the data matrix still produces a correct result with

0 commit comments

Comments
 (0)