Skip to content

Commit

Permalink
Skip MG dgl_uniform_sampler test in nightlies (#4479)
Browse files Browse the repository at this point in the history
Addresses rapidsai/graph_dl#500

This PR adds a marker to skip `test_dgl_uniform_sampler_mg.py` in our nightly workflow on draco to unblock other tests that are waiting to be run.

This will be marked "Skipped" while it is being investigated.

Authors:
  - Ralph Liu (https://github.com/nv-rliu)

Approvers:
  - Rick Ratzel (https://github.com/rlratzel)

URL: #4479
  • Loading branch information
nv-rliu authored Jun 24, 2024
1 parent 52712cd commit 34f8471
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2023, NVIDIA CORPORATION.
# Copyright (c) 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 @@ -21,6 +21,12 @@
from cugraph.gnn.dgl_extensions.dgl_uniform_sampler import DGLUniformSampler


pytestmark = pytest.mark.skip(
reason="Skipping this file until dask worker \
slowdown has been investigated"
)


def assert_correct_eids(edge_df, sample_edge_id_df):
# We test that all src, dst correspond to the correct
# eids in the sample_edge_id_df
Expand Down

0 comments on commit 34f8471

Please sign in to comment.