Skip to content

Commit 76c23b4

Browse files
committed
BUG: another pesky mpl import
1 parent 5b99939 commit 76c23b4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

pandas/tests/test_rplot.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
import pandas.tools.rplot as rplot
33
from pandas import read_csv
44
import os
5-
import matplotlib.pyplot as plt
6-
import pdb
5+
6+
import nose
7+
8+
9+
try:
10+
import matplotlib.pyplot as plt
11+
except:
12+
raise nose.SkipTest
13+
714

815
def curpath():
916
pth, _ = os.path.split(os.path.abspath(__file__))

0 commit comments

Comments
 (0)