summaryrefslogtreecommitdiff
path: root/silx/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/test/__init__.py')
-rw-r--r--silx/test/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/silx/test/__init__.py b/silx/test/__init__.py
index 01ee8d1..0a85fe2 100644
--- a/silx/test/__init__.py
+++ b/silx/test/__init__.py
@@ -32,7 +32,7 @@ It will skip all tests from :mod:`silx.test.gui`.
__authors__ = ["T. Vincent"]
__license__ = "MIT"
-__date__ = "20/04/2017"
+__date__ = "22/06/2017"
import logging
@@ -53,6 +53,7 @@ def suite():
from ..gui import test as test_gui
from ..utils import test as test_utils
from ..opencl import test as test_ocl
+ from ..app import test as test_app
test_suite = unittest.TestSuite()
# test sx first cause qui tests load ipython module
test_suite.addTest(test_sx.suite())
@@ -61,11 +62,12 @@ def suite():
test_suite.addTest(test_utils.suite())
test_suite.addTest(test_version.suite())
test_suite.addTest(test_resources.suite())
- test_suite.addTest(test_utils.suite())
test_suite.addTest(test_io.suite())
test_suite.addTest(test_math.suite())
test_suite.addTest(test_image.suite())
test_suite.addTest(test_ocl.suite())
+ test_suite.addTest(test_app.suite())
+
return test_suite