Skip to content

Commit

Permalink
Ignore cuDF test
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Jan 30, 2024
1 parent d6b654f commit 0e9ca5d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions holoviews/tests/core/data/test_cudfinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,10 @@ def test_dataset_groupby_second_dim(self):

def test_dataset_aggregate_string_types_size(self):
raise SkipTest("cuDF does not support variance aggregation")

def test_select_with_neighbor(self):
try:
# Not currently supported by CuDF
super().test_select_with_neighbor()
except NotImplementedError:
raise SkipTest("Not supported")

0 comments on commit 0e9ca5d

Please sign in to comment.