Skip to content

BUG: missing nose import for skip test #8867

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pandas/tests/test_format.py
Original file line number Diff line number Diff line change
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)