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__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/silx/opencl/test/__init__.py b/silx/opencl/test/__init__.py
index 2fe88ea..f3121d5 100644
--- a/silx/opencl/test/__init__.py
+++ b/silx/opencl/test/__init__.py
@@ -24,7 +24,7 @@
__authors__ = ["J. Kieffer"]
__license__ = "MIT"
-__date__ = "17/10/2017"
+__date__ = "11/01/2019"
import os
import unittest
@@ -36,6 +36,9 @@ from . import test_linalg
from . import test_array_utils
from ..codec import test as test_codec
from . import test_image
+from . import test_kahan
+from . import test_stats
+
def suite():
test_suite = unittest.TestSuite()
@@ -47,6 +50,8 @@ def suite():
test_suite.addTests(test_array_utils.suite())
test_suite.addTests(test_codec.suite())
test_suite.addTests(test_image.suite())
+ test_suite.addTests(test_kahan.suite())
+ test_suite.addTests(test_stats.suite())
# Allow to remove sift from the project
test_base_dir = os.path.dirname(__file__)
sift_dir = os.path.join(test_base_dir, "..", "sift")