We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 633afbc commit ebab919Copy full SHA for ebab919
pygmt/tests/test_contour.py
@@ -2,6 +2,7 @@
2
Test Figure.contour.
3
"""
4
5
+import platform
6
from pathlib import Path
7
8
import numpy as np
@@ -30,6 +31,7 @@ def fixture_region():
30
31
32
33
@pytest.mark.mpl_image_compare
34
+@pytest.mark.skipif(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
35
def test_contour_vec(region):
36
37
Plot an x-centered gaussian kernel with different y scale.
@@ -130,6 +132,7 @@ def test_contour_multiple_levels(region):
130
132
131
133
134
@pytest.mark.mpl_image_compare(filename="test_contour_vec.png")
135
136
def test_contour_incols_transposed_data(region):
137
138
Make sure that transposing the data matrix still produces a correct result with
0 commit comments