Skip to content

Commit

Permalink
TST: optimize: skip failing test of deprecated solver
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhaber committed May 20, 2022
1 parent 81de56a commit 8163786
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scipy/optimize/tests/test_linprog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,9 @@ class LinprogSimplexTests(LinprogCommonTests):
class LinprogIPTests(LinprogCommonTests):
method = "interior-point"

def test_bug_10466(self):
pytest.skip("Test is failing, but solver is deprecated.")


@pytest.mark.filterwarnings("ignore::DeprecationWarning")
class LinprogRSTests(LinprogCommonTests):
Expand Down Expand Up @@ -1941,9 +1944,6 @@ class TestLinprogIPSparseCholmod(LinprogIPTests):
class TestLinprogIPSparseUmfpack(LinprogIPTests):
options = {"sparse": True, "cholesky": False}

def test_bug_10466(self):
pytest.skip("Autoscale doesn't fix everything, and that's OK.")

def test_network_flow_limited_capacity(self):
pytest.skip("Failing due to numerical issues on some platforms.")

Expand Down

0 comments on commit 8163786

Please sign in to comment.