Skip to content

Commit

Permalink
Merge pull request #8867 from matthew-brett/missing-nose-import
Browse files Browse the repository at this point in the history
BUG: missing nose import for skip test
  • Loading branch information
jreback committed Nov 21, 2014
2 parents 5470f5c + 4c5ac16 commit f1b270f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/test_format.py
Expand Up @@ -27,6 +27,8 @@
option_context, reset_option)
from datetime import datetime

import nose

_frame = DataFrame(tm.getSeriesData())


Expand Down Expand Up @@ -1190,7 +1192,6 @@ def test_frame_info_encoding(self):
fmt.set_option('display.max_rows', 200)

def test_pprint_thing(self):
import nose
from pandas.core.common import pprint_thing as pp_t

if PY3:
Expand Down Expand Up @@ -3036,6 +3037,5 @@ def test_tz_dateutil(self):
self.assertEqual(str(dt_datetime_us), str(Timestamp(dt_datetime_us)))

if __name__ == '__main__':
import nose
nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb', '--pdb-failure'],
exit=False)

0 comments on commit f1b270f

Please sign in to comment.