Skip to content

Commit

Permalink
Replaces DATASETS_UNDIRECTED list with list of specific dataset objs.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlratzel committed Nov 19, 2023
1 parent 7067cb0 commit 82d69e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import dask_cudf
from pylibcugraph.testing.utils import gen_fixture_params_product
from cugraph.datasets import DATASETS_UNDIRECTED
from cugraph.datasets import karate, dolphins

import cugraph
import cugraph.dask as dcg
Expand All @@ -41,7 +41,7 @@ def setup_function():


# email_Eu_core is too expensive to test
datasets = DATASETS_UNDIRECTED
datasets = [karate, dolphins]


# =============================================================================
Expand Down

0 comments on commit 82d69e8

Please sign in to comment.