Skip to content

Commit a7f5ed9

Browse files
committed
blacklist on win32
1 parent 218f6b3 commit a7f5ed9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_capi/test_float.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def test_pack_unpack_roundtrip(self):
179179
else:
180180
self.assertEqual(value2, value)
181181

182-
@unittest.skipUnless(HAVE_IEEE_754, "requires IEEE 754")
182+
@unittest.skipUnless(HAVE_IEEE_754 and sys.platform != 'win32',
183+
"requires IEEE 754")
183184
def test_pack_unpack_roundtrip_nans(self):
184185
pack = _testcapi.float_pack
185186
unpack = _testcapi.float_unpack

0 commit comments

Comments
 (0)