Skip to content

Commit

Permalink
Merge pull request #6263 from tacaswell/tst_skip_float_rounding_issue…
Browse files Browse the repository at this point in the history
…_test

TST: skip broken test
  • Loading branch information
jenshnielsen committed Apr 3, 2016
2 parents 7a4e07c + 26cba4b commit b49bcf4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/matplotlib/tests/test_axes.py
Expand Up @@ -22,6 +22,7 @@

import matplotlib
from matplotlib.testing.decorators import image_comparison, cleanup
from matplotlib.testing.noseclasses import KnownFailureTest
import matplotlib.pyplot as plt
import matplotlib.markers as mmarkers
from numpy.testing import assert_allclose, assert_array_equal
Expand Down Expand Up @@ -88,6 +89,8 @@ def test_formatter_ticker():

@image_comparison(baseline_images=["formatter_large_small"])
def test_formatter_large_small():
if tuple(map(int, np.__version__.split('.'))) >= (1, 11, 0):
raise KnownFailureTest("Fall out from a fixed numpy bug")
# github issue #617, pull #619
fig, ax = plt.subplots(1)
x = [0.500000001, 0.500000002]
Expand Down

0 comments on commit b49bcf4

Please sign in to comment.