Skip to content

Commit

Permalink
skip test for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-held committed May 20, 2024
1 parent 52c1fdc commit 77eef24
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/visualize/test_visualize_plot_result.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import sys
from unittest import mock

import matplotlib.pyplot as plt
from matplotlib.testing.compare import compare_images
import numpy as np
import pytest

from cabinetry.visualize import plot_result

Expand Down Expand Up @@ -117,6 +119,9 @@ def test_ranking(tmp_path):
plt.close("all")


@pytest.mark.skipif(
sys.version_info == (3, 8), reason="legend positioning, see cabinetry#476"
)
def test_scan(tmp_path):
fname = tmp_path / "fig.png"
par_name = "a"
Expand Down

0 comments on commit 77eef24

Please sign in to comment.