Skip to content

Commit

Permalink
Remove is_single_gpu() skip for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-rliu committed Feb 14, 2024
1 parent 3b927f6 commit 43941af
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2023, NVIDIA CORPORATION.
# Copyright (c) 2018-2024, NVIDIA CORPORATION.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand All @@ -18,7 +18,6 @@
import cudf
import dask_cudf
import cugraph
from cugraph.dask.common.mg_utils import is_single_gpu
from cugraph.testing.utils import RAPIDS_DATASET_ROOT_DIR_PATH
from cudf.testing import assert_series_equal

Expand All @@ -41,7 +40,6 @@ def setup_function():


@pytest.mark.mg
@pytest.mark.skipif(is_single_gpu(), reason="skipping MG testing on Single GPU system")
@pytest.mark.parametrize("directed", IS_DIRECTED)
@pytest.mark.parametrize("data_file", DATA_PATH)
def test_dask_mg_degree(dask_client, directed, data_file):
Expand Down

0 comments on commit 43941af

Please sign in to comment.