From c6e368f1c05285c8c964aca9a55a30cd1d39e0d8 Mon Sep 17 00:00:00 2001 From: Simon Adorf Date: Fri, 13 Mar 2026 16:34:23 +0000 Subject: [PATCH] Remove no_bad_cuml_array_check --- python/cuml/pyproject.toml | 1 - python/cuml/tests/test_incremental_pca.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/python/cuml/pyproject.toml b/python/cuml/pyproject.toml index 3f1eb992df..a4ba4b3e18 100644 --- a/python/cuml/pyproject.toml +++ b/python/cuml/pyproject.toml @@ -25,7 +25,6 @@ markers = [ "stress: Longest running tests focused on stressing hardware compute resources", "mg: Multi-GPU tests", "memleak: Test that checks for memory leaks", - "no_bad_cuml_array_check: Test that should not check for bad CumlArray uses", "ucx: Run _only_ Dask UCXX tests", ] diff --git a/python/cuml/tests/test_incremental_pca.py b/python/cuml/tests/test_incremental_pca.py index 74b6cc35d7..dc5a256c8c 100644 --- a/python/cuml/tests/test_incremental_pca.py +++ b/python/cuml/tests/test_incremental_pca.py @@ -28,7 +28,6 @@ (500, 250, 14, True, 0.07, "csr", 1, True), ], ) -@pytest.mark.no_bad_cuml_array_check def test_fit( nrows, ncols, @@ -92,7 +91,6 @@ def test_fit( (5000, 4, 2, 0.1, 100, False), ], ) -@pytest.mark.no_bad_cuml_array_check def test_partial_fit( nrows, ncols, n_components, density, batch_size_divider, whiten ):