summaryrefslogtreecommitdiff
path: root/silx/math/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/math/test/__init__.py')
-rw-r--r--silx/math/test/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/silx/math/test/__init__.py b/silx/math/test/__init__.py
index 7171bda..fdab38f 100644
--- a/silx/math/test/__init__.py
+++ b/silx/math/test/__init__.py
@@ -1,6 +1,6 @@
# coding: utf-8
# /*##########################################################################
-# Copyright (C) 2016 European Synchrotron Radiation Facility
+# Copyright (C) 2016-2018 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ -36,7 +36,8 @@ from ..fit.test import suite as test_fit_suite
from .test_marchingcubes import suite as test_marchingcubes_suite
from ..medianfilter.test import suite as test_medianfilter_suite
from .test_combo import suite as test_combo_suite
-
+from .test_calibration import suite as test_calibration_suite
+from .test_colormap import suite as test_colormap_suite
def suite():
test_suite = unittest.TestSuite()
@@ -48,4 +49,6 @@ def suite():
test_suite.addTest(test_marchingcubes_suite())
test_suite.addTest(test_medianfilter_suite())
test_suite.addTest(test_combo_suite())
+ test_suite.addTest(test_calibration_suite())
+ test_suite.addTest(test_colormap_suite())
return test_suite