diff options
author | Travis E. Oliphant <teoliphant@gmail.com> | 2012-05-19 19:08:43 -0700 |
---|---|---|
committer | Travis E. Oliphant <teoliphant@gmail.com> | 2012-05-19 19:08:43 -0700 |
commit | e41267b424a1781b9b53a7a2fd05158435fab604 (patch) | |
tree | c1351cbb6307f4f402012447c6b87a8545c2d377 | |
parent | 6c883959588b29c5ac92ef2723d24a93db63d716 (diff) | |
parent | 977878adf0ac08ee44ab45204c0c3d90acf1ac13 (diff) | |
download | numpy-e41267b424a1781b9b53a7a2fd05158435fab604.tar.gz |
Merge pull request #283 from rgommers/ticket-1755-knownfail
TST: mark test for floating point exceptions as knownfail. See #1755.
-rw-r--r-- | numpy/core/tests/test_numeric.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/tests/test_numeric.py b/numpy/core/tests/test_numeric.py index 5233d0f88..31d818778 100644 --- a/numpy/core/tests/test_numeric.py +++ b/numpy/core/tests/test_numeric.py @@ -285,6 +285,7 @@ class TestFloatExceptions(TestCase): 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') |