-
-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90c2569
commit 369650d
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
from unittest import SkipTest | ||
|
||
try: | ||
import cudf | ||
except: | ||
raise SkipTest("Could not import cuDF, skipping cuDFInterface tests.") | ||
|
||
from .base import HeterogeneousColumnTests, InterfaceTests | ||
|
||
import logging | ||
|
||
|
||
|
||
class cuDFInterfaceTests(HeterogeneousColumnTests, InterfaceTests): | ||
""" | ||
Tests for the cuDFInterface. | ||
""" | ||
|
||
datatype = 'cuDF' | ||
data_type = cudf.DataFrame | ||
|
||
def setUp(self): | ||
super(cuDFInterfaceTests, self).setUp() | ||
logging.getLogger('numba.cuda.cudadrv.driver').setLevel(30) | ||
|
||
def test_dataset_sort_hm(self): | ||
raise SkipTest("Not supported") | ||
|
||
def test_dataset_sort_reverse_hm(self): | ||
raise SkipTest("Not supported") | ||
|
||
def test_dataset_sort_vdim_ht(self): | ||
raise SkipTest("Not supported") | ||
|
||
def test_dataset_sort_vdim_hm(self): | ||
raise SkipTest("Not supported") | ||
|
||
def test_dataset_sort_vdim_hm_alias(self): | ||
raise SkipTest("Not supported") | ||
|
||
def test_dataset_sort_string_ht(self): | ||
raise SkipTest("Not supported") | ||
|
||
|