Skip to content

Commit f1b270f

Browse files
committed
Merge pull request #8867 from matthew-brett/missing-nose-import
BUG: missing nose import for skip test
2 parents 5470f5c + 4c5ac16 commit f1b270f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_format.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
option_context, reset_option)
2828
from datetime import datetime
2929

30+
import nose
31+
3032
_frame = DataFrame(tm.getSeriesData())
3133

3234

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

11921194
def test_pprint_thing(self):
1193-
import nose
11941195
from pandas.core.common import pprint_thing as pp_t
11951196

11961197
if PY3:
@@ -3036,6 +3037,5 @@ def test_tz_dateutil(self):
30363037
self.assertEqual(str(dt_datetime_us), str(Timestamp(dt_datetime_us)))
30373038

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

0 commit comments

Comments
 (0)