Skip to content

Commit 3ebc87d

Browse files
committed
TST: fix panel/test_panel file modes. don't skip plotting tests if ipython imported
1 parent 8c48052 commit 3ebc87d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pandas/core/panel.py

100755100644
File mode changed.

pandas/tests/test_graphics.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ class TestSeriesPlots(unittest.TestCase):
1919
@classmethod
2020
def setUpClass(cls):
2121
import sys
22-
if 'IPython' in sys.modules:
23-
raise nose.SkipTest
22+
23+
# if 'IPython' in sys.modules:
24+
# raise nose.SkipTest
2425

2526
try:
2627
import matplotlib as mpl

pandas/tests/test_panel.py

100755100644
File mode changed.

0 commit comments

Comments
 (0)