Skip to content

Commit

Permalink
Mark two contour tests as xfail on Linux ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Feb 3, 2025
1 parent 633afbc commit ebab919
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pygmt/tests/test_contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test Figure.contour.
"""

import platform
from pathlib import Path

import numpy as np
Expand Down Expand Up @@ -30,6 +31,7 @@ def fixture_region():


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


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

0 comments on commit ebab919

Please sign in to comment.