summaryrefslogtreecommitdiff
path: root/silx/io/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/io/test/__init__.py')
-rw-r--r--silx/io/test/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/silx/io/test/__init__.py b/silx/io/test/__init__.py
index 72bd8f9..2510ae2 100644
--- a/silx/io/test/__init__.py
+++ b/silx/io/test/__init__.py
@@ -24,7 +24,7 @@
__authors__ = ["T. Vincent", "P. Knobel"]
__license__ = "MIT"
-__date__ = "31/08/2016"
+__date__ = "20/09/2017"
import unittest
@@ -37,6 +37,8 @@ from .test_octaveh5 import suite as test_octaveh5_suite
from .test_fabioh5 import suite as test_fabioh5_suite
from .test_utils import suite as test_utils_suite
from .test_nxdata import suite as test_nxdata_suite
+from .test_commonh5 import suite as test_commonh5_suite
+from .test_rawh5 import suite as test_rawh5_suite
def suite():
@@ -50,4 +52,6 @@ def suite():
test_suite.addTest(test_utils_suite())
test_suite.addTest(test_fabioh5_suite())
test_suite.addTest(test_nxdata_suite())
+ test_suite.addTest(test_commonh5_suite())
+ test_suite.addTest(test_rawh5_suite())
return test_suite