Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 8 additions & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand All @@ -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 \
Expand Down
1 change: 0 additions & 1 deletion python/cugraph/cugraph/tests/utils/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading