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, 5 insertions, 2 deletions
diff --git a/silx/opencl/test/__init__.py b/silx/opencl/test/__init__.py
index f6aadcd..2fe88ea 100644
--- a/silx/opencl/test/__init__.py
+++ b/silx/opencl/test/__init__.py
@@ -24,7 +24,7 @@
__authors__ = ["J. Kieffer"]
__license__ = "MIT"
-__date__ = "01/09/2017"
+__date__ = "17/10/2017"
import os
import unittest
@@ -34,6 +34,8 @@ from . import test_backprojection
from . import test_projection
from . import test_linalg
from . import test_array_utils
+from ..codec import test as test_codec
+from . import test_image
def suite():
test_suite = unittest.TestSuite()
@@ -43,7 +45,8 @@ def suite():
test_suite.addTests(test_projection.suite())
test_suite.addTests(test_linalg.suite())
test_suite.addTests(test_array_utils.suite())
-
+ test_suite.addTests(test_codec.suite())
+ test_suite.addTests(test_image.suite())
# Allow to remove sift from the project
test_base_dir = os.path.dirname(__file__)
sift_dir = os.path.join(test_base_dir, "..", "sift")