summaryrefslogtreecommitdiff
path: root/silx/utils/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/utils/test/__init__.py')
-rwxr-xr-xsilx/utils/test/__init__.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/silx/utils/test/__init__.py b/silx/utils/test/__init__.py
deleted file mode 100755
index b35feee..0000000
--- a/silx/utils/test/__init__.py
+++ /dev/null
@@ -1,59 +0,0 @@
-# coding: utf-8
-# /*##########################################################################
-#
-# Copyright (c) 2016-2019 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
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-# THE SOFTWARE.
-#
-# ###########################################################################*/
-__authors__ = ["T. Vincent", "P. Knobel"]
-__license__ = "MIT"
-__date__ = "08/03/2019"
-
-
-import unittest
-from . import test_weakref
-from . import test_html
-from . import test_array_like
-from . import test_launcher
-from . import test_deprecation
-from . import test_proxy
-from . import test_debug
-from . import test_number
-from . import test_external_resources
-from . import test_enum
-from . import test_testutils
-from . import test_retry
-
-
-def suite():
- test_suite = unittest.TestSuite()
- test_suite.addTest(test_weakref.suite())
- test_suite.addTest(test_html.suite())
- test_suite.addTest(test_array_like.suite())
- test_suite.addTest(test_launcher.suite())
- test_suite.addTest(test_deprecation.suite())
- test_suite.addTest(test_proxy.suite())
- test_suite.addTest(test_debug.suite())
- test_suite.addTest(test_number.suite())
- test_suite.addTest(test_external_resources.suite())
- test_suite.addTest(test_enum.suite())
- test_suite.addTest(test_testutils.suite())
- test_suite.addTest(test_retry.suite())
- return test_suite