10000 TST: mark floating point error tests as unconditional knownfail. See… · certik/numpy@c43a8f2 · GitHub
[go: up one dir, main page]

Skip to content

Commit c43a8f2

Browse files
author
Ralf Gommers
committed
TST: mark floating point error tests as unconditional knownfail. See numpy#1755.
1 parent b6fac09 commit c43a8f2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

numpy/core/tests/test_numeric.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,7 @@ def assert_op_raises_fpe(self, fpeerr, flop, sc1, sc2):
286286
self.assert_raises_fpe(fpeerr, flop, sc1, sc2[()]);
287287
self.assert_raises_fpe(fpeerr, flop, sc1[()], sc2[()]);
288288

289-
@dec.know 9F32 nfailureif((sys.platform == "darwin") and
290-
("powerpc" in platform.processor()),
291-
"See ticket 1755")
289+
@dec.knownfailureif(True, "See ticket 1755")
292290
def test_floating_exceptions(self):
293291
"""Test basic arithmetic function errors"""
294292
oldsettings = np.seterr(all='raise')
@@ -344,9 +342,7 @@ def test_floating_exceptions(self):
344342
finally:
345343
np.seterr(**oldsettings)
346344

347-
@dec.knownfailureif(sys.platform.startswith('win') or
348-
(sys.platform == "darwin" and "powerpc" in platform.processor()),
349-
"See ticket 1755")
345+
@dec.knownfailureif(True, "See ticket 1755")
350346
def test_floating_exceptions_power(self):
351347
"""Test basic arithmetic function errors"""
352348
oldsettings = np.seterr(all='raise')

0 commit comments

Comments
 (0)
0