Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a4e07c + 26cba4b commit b49bcf4Copy full SHA for b49bcf4
lib/matplotlib/tests/test_axes.py
@@ -22,6 +22,7 @@
22
23
import matplotlib
24
from matplotlib.testing.decorators import image_comparison, cleanup
25
+from matplotlib.testing.noseclasses import KnownFailureTest
26
import matplotlib.pyplot as plt
27
import matplotlib.markers as mmarkers
28
from numpy.testing import assert_allclose, assert_array_equal
@@ -88,6 +89,8 @@ def test_formatter_ticker():
88
89
90
@image_comparison(baseline_images=["formatter_large_small"])
91
def test_formatter_large_small():
92
+ if tuple(map(int, np.__version__.split('.'))) >= (1, 11, 0):
93
+ raise KnownFailureTest("Fall out from a fixed numpy bug")
94
# github issue #617, pull #619
95
fig, ax = plt.subplots(1)
96
x = [0.500000001, 0.500000002]
0 commit comments