We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8851dd commit 44e7356Copy full SHA for 44e7356
lib/matplotlib/tests/test_axes.py
@@ -20,6 +20,7 @@
20
21
import matplotlib
22
from matplotlib.testing.decorators import image_comparison, cleanup
23
+from matplotlib.testing.noseclasses import KnownFailureTest
24
import matplotlib.pyplot as plt
25
import matplotlib.markers as mmarkers
26
from numpy.testing import assert_array_equal
@@ -83,6 +84,8 @@ def test_formatter_ticker():
83
84
85
@image_comparison(baseline_images=["formatter_large_small"])
86
def test_formatter_large_small():
87
+ if tuple(map(int, np.__version__.split('.'))) >= (1, 11, 0):
88
+ raise KnownFailureTest("Fall out from a fixed numpy bug")
89
# github issue #617, pull #619
90
fig, ax = plt.subplots(1)
91
x = [0.500000001, 0.500000002]
0 commit comments