Skip to content

Commit 022d7c5

Browse files
committed
TST: skip buggy ujson tests on win-64/py2.7
1 parent b0c14c1 commit 022d7c5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/source/whatsnew/v0.17.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Bug Fixes
370370
- Bug in ``DatetimeIndex`` and ``PeriodIndex.value_counts`` resets name from its result, but retains in result's ``Index``. (:issue:`10150`)
371371
- Bug in `pd.eval` using ``numexpr`` engine coerces 1 element numpy array to scalar (:issue:`10546`)
372372
- Bug in `pandas.concat` with ``axis=0`` when column is of dtype ``category`` (:issue:`10177`)
373-
- Bug in ``read_msgpack`` where input type is not always checked (:issue:`10369`)
373+
- Bug in ``read_msgpack`` where input type is not always checked (:issue:`10369`, :issue:`10630`)
374374
- Bug in `pandas.read_csv` with kwargs ``index_col=False``, ``index_col=['a', 'b']`` or ``dtype``
375375
(:issue:`10413`, :issue:`10467`, :issue:`10577`)
376376
- Bug in `Series.from_csv` with ``header`` kwarg not setting the ``Series.name`` or the ``Series.index.name`` (:issue:`10483`)

pandas/io/tests/test_json/test_ujson.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ def test_decimalDecodeTestPrecise(self):
114114
self.assertEqual(sut, decoded)
115115

116116
def test_encodeDoubleTinyExponential(self):
117+
if compat.is_platform_windows() and not compat.PY3:
118+
raise nose.SkipTest("buggy on win-64 for py2")
119+
117120
num = 1e-40
118121
self.assertEqual(num, ujson.decode(ujson.encode(num)))
119122
num = 1e-100

0 commit comments

Comments
 (0)