Skip to content

Commit

Permalink
Temporarily skip deleting copied dask dataframe to avoid crash
Browse files Browse the repository at this point in the history
  • Loading branch information
naimnv committed Sep 22, 2023
1 parent bd85881 commit 0d8ff97
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions python/cugraph/cugraph/tests/traversal/test_bfs_mg.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
import cugraph.dask as dcg
from cugraph.testing.utils import RAPIDS_DATASET_ROOT_DIR_PATH

import random

# =============================================================================
# Pytest Setup / Teardown - called for each test function
# =============================================================================
Expand Down Expand Up @@ -63,9 +61,7 @@ def modify_dataset(df):
return cudf.concat([df, temp_df])

meta = ddf._meta
ddf = ddf.map_partitions(
modify_dataset, meta=meta, token="custom-" + str(random.random())
)
ddf = ddf.map_partitions(modify_dataset, meta=meta)

df = cudf.read_csv(
input_data_path,
Expand Down

0 comments on commit 0d8ff97

Please sign in to comment.