From e906e02e61e5f725cc762b389f76f863e93949c2 Mon Sep 17 00:00:00 2001 From: Ralph Liu Date: Tue, 21 Oct 2025 12:29:22 -0700 Subject: [PATCH 1/2] Don't skip --- python/cugraph/cugraph/tests/utils/test_dataset.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/cugraph/cugraph/tests/utils/test_dataset.py b/python/cugraph/cugraph/tests/utils/test_dataset.py index 98c2a91a731..0b99058090d 100644 --- a/python/cugraph/cugraph/tests/utils/test_dataset.py +++ b/python/cugraph/cugraph/tests/utils/test_dataset.py @@ -132,7 +132,6 @@ def test_download_dask(dask_client, dataset): @pytest.mark.parametrize("dataset", SMALL_DATASETS) -@pytest.mark.skip("Failing in 25.12 CI") def test_reader(dataset): # defaults to using cudf E = dataset.get_edgelist() From 3dd10f2961fad21ad28fe99ffe398aa337552fbe Mon Sep 17 00:00:00 2001 From: Ralph Liu Date: Wed, 22 Oct 2025 10:40:36 -0700 Subject: [PATCH 2/2] Update --- ci/test_python.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ci/test_python.sh b/ci/test_python.sh index bb771d49ec1..1bab1e3c7c9 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -76,7 +76,7 @@ rapids-logger "pytest cugraph (not mg, with xdist)" --numprocesses=8 \ --dist=worksteal \ -m "not mg" \ - -k "not test_bulk_sampler and not test_create_undirected_graph_from_asymmetric_adj_list and not test_uniform_neighbor_sample and not test_node2vec and not(test_property_graph.py and cyber)" \ + -k "not test_bulk_sampler and not test_create_undirected_graph_from_asymmetric_adj_list and not test_uniform_neighbor_sample and not test_node2vec and not(test_property_graph.py and cyber) and not test_dataset" \ --cov-config=../../.coveragerc \ --cov=cugraph \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cugraph-coverage.xml" \ @@ -96,6 +96,13 @@ rapids-logger "pytest cugraph (mg, with xdist)" --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cugraph-coverage.xml" \ --cov-report=term +rapids-logger "pytest cugraph (dataset)" +./ci/run_cugraph_pytests.sh \ + -v \ + --numprocesses=8 \ + --dist=worksteal \ + -k "test_dataset" + rapids-logger "pytest cugraph (mg dist_sampler and uns)" ./ci/run_cugraph_pytests.sh \ --verbose \