summaryrefslogtreecommitdiff
path: root/silx/test/__init__.py
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@debian.org>2017-10-07 07:59:01 +0200
committerPicca Frédéric-Emmanuel <picca@debian.org>2017-10-07 07:59:01 +0200
commitbfa4dba15485b4192f8bbe13345e9658c97ecf76 (patch)
treefb9c6e5860881fbde902f7cbdbd41dc4a3a9fb5d /silx/test/__init__.py
parentf7bdc2acff3c13a6d632c28c4569690ab106eed7 (diff)
New upstream version 0.6.0+dfsg
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