Skip to content

Commit 5a59eac

Browse files
test modified
1 parent bc68bf7 commit 5a59eac

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pandas/tests/test_dtype_utc.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
@author: rodolfoxps
77
"""
8-
8+
import nose
99
import pandas as pd
1010
import datetime, pytz
1111
from pandas.util.testing import assert_frame_equal
@@ -20,4 +20,8 @@ def test_dtype_utc(self):
2020
datetime.datetime(2016, 12, 12, 22, 24, 6, 100001, tzinfo=pytz.utc) ,
2121
datetime.datetime(2016, 12, 12, 22, 24, 6, 100001, tzinfo=pytz.utc) ])
2222

23-
assert_frame_equal(filled, expected)
23+
assert_frame_equal(filled, expected)
24+
25+
if __name__ == '__main__':
26+
nose.runmodule(argv=[__file__, '-vvs', '-x', '--pdb', '--pdb-failure'],
27+
exit=False)

0 commit comments

Comments
 (0)