Skip to content

Commit

Permalink
TST: mark test for floating point exceptions as knownfail. See numpy#…
Browse files Browse the repository at this point in the history
…1755.

Note that this test was marked as knownfail in 1.5.x and 1.6.x; it is reported
as failing on many different platforms.
  • Loading branch information
rgommers committed May 19, 2012
1 parent 6c88395 commit 977878a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions numpy/core/tests/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ def assert_op_raises_fpe(self, fpeerr, flop, sc1, sc2):
self.assert_raises_fpe(fpeerr, flop, sc1, sc2[()]);
self.assert_raises_fpe(fpeerr, flop, sc1[()], sc2[()]);

@dec.knownfailureif(True, "See ticket 1755")
def test_floating_exceptions(self):
"""Test basic arithmetic function errors"""
oldsettings = np.seterr(all='raise')
Expand Down

0 comments on commit 977878a

Please sign in to comment.