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 44e7356

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

File tree

Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed

‎lib/matplotlib/tests/test_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/tests/test_axes.py
+3Lines changed: 3 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.