summaryrefslogtreecommitdiff
path: root/silx/opencl/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/opencl/test/__init__.py')
-rw-r--r--silx/opencl/test/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/silx/opencl/test/__init__.py b/silx/opencl/test/__init__.py
index f3121d5..2e90e66 100644
--- a/silx/opencl/test/__init__.py
+++ b/silx/opencl/test/__init__.py
@@ -38,6 +38,8 @@ from ..codec import test as test_codec
from . import test_image
from . import test_kahan
from . import test_stats
+from . import test_convolution
+from . import test_sparse
def suite():
@@ -52,6 +54,8 @@ def suite():
test_suite.addTests(test_image.suite())
test_suite.addTests(test_kahan.suite())
test_suite.addTests(test_stats.suite())
+ test_suite.addTests(test_convolution.suite())
+ test_suite.addTests(test_sparse.suite())
# Allow to remove sift from the project
test_base_dir = os.path.dirname(__file__)
sift_dir = os.path.join(test_base_dir, "..", "sift")