Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Move tests for numba-dppy #102

Merged
merged 1 commit into from
Nov 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions numba/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ def load_tests(loader, tests, pattern):
cuda_dir = join(dirname(dirname(__file__)), 'cuda/tests')
suite.addTests(loader.discover(cuda_dir))

# Numba DPPL tests are located in a separate directory
from numba.dppl_config import dppl_present
if dppl_present:
dppl_dir = join(dirname(dirname(__file__)), 'dppl/tests')
suite.addTests(loader.discover(dppl_dir))

# Numba ROC tests are located in a separate directory
roc_dir = join(dirname(dirname(__file__)), 'roc/tests')
suite.addTests(loader.discover(roc_dir))
Expand Down