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, 3 insertions, 1 deletions
diff --git a/silx/opencl/test/__init__.py b/silx/opencl/test/__init__.py
index 2e90e66..928dbaf 100644
--- a/silx/opencl/test/__init__.py
+++ b/silx/opencl/test/__init__.py
@@ -24,7 +24,7 @@
__authors__ = ["J. Kieffer"]
__license__ = "MIT"
-__date__ = "11/01/2019"
+__date__ = "17/05/2021"
import os
import unittest
@@ -37,6 +37,7 @@ from . import test_array_utils
from ..codec import test as test_codec
from . import test_image
from . import test_kahan
+from . import test_doubleword
from . import test_stats
from . import test_convolution
from . import test_sparse
@@ -53,6 +54,7 @@ def suite():
test_suite.addTests(test_codec.suite())
test_suite.addTests(test_image.suite())
test_suite.addTests(test_kahan.suite())
+ test_suite.addTests(test_doubleword.suite())
test_suite.addTests(test_stats.suite())
test_suite.addTests(test_convolution.suite())
test_suite.addTests(test_sparse.suite())