Skip to content

Commit

Permalink
TST: mark test_setdiag for BSR and COO as a known failure
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Sep 26, 2013
1 parent e10d618 commit 856b7c1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scipy/sparse/tests/test_base.py
Expand Up @@ -3020,6 +3020,10 @@ def test_todia_all_zeros(self):
dia = coo_matrix(zeros).todia()
assert_array_equal(dia.A, zeros)

@dec.knownfailureif(True, "known deficiency in COO")
def test_setdiag(self):
pass


class TestDIA(sparse_test_class(getset=False, slicing=False, slicing_assign=False,
fancy_indexing=False, fancy_assign=False,
Expand Down Expand Up @@ -3119,5 +3123,9 @@ def test_bsr_matvecs(self):
def test_iterator(self):
pass

@dec.knownfailureif(True, "known deficiency in BSR")
def test_setdiag(self):
pass

if __name__ == "__main__":
run_module_suite()

0 comments on commit 856b7c1

Please sign in to comment.