Skip to content

Commit 3edbc78

Browse files
committed
Merge pull request #8810 from onesandzeroes/mplskip
TST: Skip hist testing for matplotlib <= 1.2
2 parents 4faf620 + eb7ce0f commit 3edbc78

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

doc/source/whatsnew/v0.15.2.txt

+1
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ Bug Fixes
6363
- Bug in slicing a multi-index with an empty list and at least one boolean indexer (:issue:`8781`)
6464
- ``io.data.Options`` now raises ``RemoteDataError`` when no expiry dates are available from Yahoo (:issue:`8761`).
6565
- ``Timedelta`` kwargs may now be numpy ints and floats (:issue:`8757`).
66+
- Skip testing of histogram plots for matplotlib <= 1.2 (:issue:`8648`).

pandas/tests/test_graphics.py

+3
Original file line numberDiff line numberDiff line change
@@ -2041,6 +2041,9 @@ def test_kde_missing_vals(self):
20412041

20422042
@slow
20432043
def test_hist_df(self):
2044+
if self.mpl_le_1_2_1:
2045+
raise nose.SkipTest("not supported in matplotlib <= 1.2.x")
2046+
20442047
df = DataFrame(randn(100, 4))
20452048
series = df[0]
20462049

0 commit comments

Comments
 (0)