Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 14db594

Browse filesBrowse files
committed
TST: skip broken test
This test only over passed due to an error arising from a bug in numpy's divmod being fixed (numpy/numpy#6127). See #5950
1 parent 715435c commit 14db594
Copy full SHA for 14db594

File tree

Expand file treeCollapse file tree

1 file changed

+4
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-1
lines changed

‎lib/matplotlib/tests/test_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_axes.py
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
import warnings
2222

2323
import matplotlib
24-
from matplotlib.testing.decorators import image_comparison, cleanup
24+
from matplotlib.testing.decorators import (image_comparison, cleanup,
25+
knownfailureif)
2526
import matplotlib.pyplot as plt
2627
import matplotlib.markers as mmarkers
2728
from numpy.testing import assert_allclose, assert_array_equal
@@ -86,7 +87,9 @@ def test_formatter_ticker():
8687
ax.autoscale_view()
8788

8889

90+
8991
@image_comparison(baseline_images=["formatter_large_small"])
92+
@knownfailureif(tuple(map(int, np.__version__.split('.'))) >= (1, 11, 0))
9093
def test_formatter_large_small():
9194
# github issue #617, pull #619
9295
fig, ax = plt.subplots(1)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.