Skip to content

Commit d51663c

Browse files
committed
disable two tests
1 parent b94eb3f commit d51663c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOGS.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Change Logs
44
0.3.0
55
+++++
66

7-
* :pr:`87`: add command line to replace contant by ConstantOfShape
7+
* :pr:`92`: avoids recursion errors in profiling
8+
* :pr:`87`: adds command line to replace contant by ConstantOfShape
89
* :pr:`79`: first draft to export to GraphBuilder
910
* :pr:`77`: supports ConcatOfShape and Slice with the light API
1011

_unittests/ut_npx/test_sklearn_array_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class TestSklearnArrayAPI(ExtTestCase):
1717
reason="reshape ArrayAPI not followed",
1818
)
1919
@ignore_warnings(DeprecationWarning)
20+
@unittest.skip("not maintained")
2021
def test_sklearn_array_api_linear_discriminant(self):
2122
X = np.array(
2223
[[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]], dtype=np.float64
@@ -39,6 +40,7 @@ def test_sklearn_array_api_linear_discriminant(self):
3940
reason="reshape ArrayAPI not followed",
4041
)
4142
@ignore_warnings(DeprecationWarning)
43+
@unittest.skip("not maintained")
4244
def test_sklearn_array_api_linear_discriminant_float32(self):
4345
X = np.array(
4446
[[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]], dtype=np.float32

0 commit comments

Comments
 (0)