Skip to content

Commit

Permalink
TST: mark TestEig.test_singular as knownfail on Windows for 0.11.x. See
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Sep 24, 2012
1 parent feabb0a commit 96f0b40
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scipy/linalg/tests/test_decomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
python tests/test_decomp.py
"""

import sys

import numpy as np
from numpy.testing import TestCase, assert_equal, assert_array_almost_equal, \
assert_array_equal, assert_raises, assert_, run_module_suite, dec
Expand Down Expand Up @@ -187,6 +189,7 @@ def _check_gen_eig(self, A, B):
assert_array_almost_equal(sort(w[isfinite(w)]), sort(wt[isfinite(wt)]),
err_msg=msg)

@dec.knownfailureif(sys.platform == "win32", "See ticket #1735")
def test_singular(self):
"""Test singular pair"""
# Example taken from
Expand Down

0 comments on commit 96f0b40

Please sign in to comment.