Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
disable tests
  • Loading branch information
xadupre committed Dec 20, 2024
commit eed11892105e4ce412dd444c0cbdc9107c2fdefb
2 changes: 2 additions & 0 deletions _unittests/ut_ort/test_sklearn_array_api_ort.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class TestSklearnArrayAPIOrt(ExtTestCase):
reason="reshape ArrayAPI not followed",
)
@skipif_ci_windows("Unstable on Windows.")
@unittest.skip("discontinued")
def test_sklearn_array_api_linear_discriminant_ort(self):
X = np.array(
[[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]], dtype=np.float64
Expand All @@ -40,6 +41,7 @@ def test_sklearn_array_api_linear_discriminant_ort(self):
reason="reshape ArrayAPI not followed",
)
@skipif_ci_windows("Unstable on Windows.")
@unittest.skip("discontinued")
def test_sklearn_array_api_linear_discriminant_ort_float32(self):
X = np.array(
[[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]], dtype=np.float32
Expand Down