Skip to content

Commit 8946b18

Browse files
committed
TST: kludge around test failure on win64 python 3.2.2
1 parent 44a2734 commit 8946b18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/io/tests/test_parsers.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1312,8 +1312,11 @@ def test_parse_dates_custom_euroformat(self):
13121312
na_values=['NA'])
13131313

13141314
def test_converters_corner_with_nas(self):
1315+
# skip aberration observed on Win64 Python 3.2.2
1316+
if hash(np.int64(-1)) != -2:
1317+
raise nose.SkipTest
1318+
13151319
import StringIO
1316-
import numpy as np
13171320
import pandas
13181321
csv = """id,score,days
13191322
1,2,12

0 commit comments

Comments
 (0)