Skip to content

Commit 44e7356

Browse files
committed
Merge pull request #6263 from tacaswell/tst_skip_float_rounding_issue_test
TST: skip broken test
1 parent a8851dd commit 44e7356

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/matplotlib/tests/test_axes.py

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import matplotlib
2222
from matplotlib.testing.decorators import image_comparison, cleanup
23+
from matplotlib.testing.noseclasses import KnownFailureTest
2324
import matplotlib.pyplot as plt
2425
import matplotlib.markers as mmarkers
2526
from numpy.testing import assert_array_equal
@@ -83,6 +84,8 @@ def test_formatter_ticker():
8384

8485
@image_comparison(baseline_images=["formatter_large_small"])
8586
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")
8689
# github issue #617, pull #619
8790
fig, ax = plt.subplots(1)
8891
x = [0.500000001, 0.500000002]

0 commit comments

Comments
 (0)