1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
--- scipy/sparse/tests/test_base.py.orig 1970-01-01 00:00:00 UTC
+++ scipy/sparse/tests/test_base.py
@@ -4774,19 +4774,19 @@ class TestCSCNonCanonical(_NonCanonicalCSMixin, TestCS
pass
-class TestBSRNonCanonical(_NonCanonicalCompressedMixin, TestBSR):
- def _insert_explicit_zero(self, M, i, j):
- x = M.tocsr()
- x[i,j] = 0
- return x.tobsr(blocksize=M.blocksize)
-
- @pytest.mark.xfail(run=False, reason='diagonal broken with non-canonical BSR')
- def test_diagonal(self):
- pass
-
- @pytest.mark.xfail(run=False, reason='expm broken with non-canonical BSR')
- def test_expm(self):
- pass
+#class TestBSRNonCanonical(_NonCanonicalCompressedMixin, TestBSR):
+# def _insert_explicit_zero(self, M, i, j):
+# x = M.tocsr()
+# x[i,j] = 0
+# return x.tobsr(blocksize=M.blocksize)
+#
+# @pytest.mark.xfail(run=False, reason='diagonal broken with non-canonical BSR')
+# def test_diagonal(self):
+# pass
+#
+# @pytest.mark.xfail(run=False, reason='expm broken with non-canonical BSR')
+# def test_expm(self):
+# pass
class TestCOONonCanonical(_NonCanonicalMixin, TestCOO):
|