1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
#!/usr/bin/env python
# coding: utf-8
#
# Project: Azimuthal integration
# https://github.com/silx-kit/pyFAI
#
# Copyright (C) 2015-2018 European Synchrotron Radiation Facility, Grenoble, France
#
# Principal author: Jérôme Kieffer (Jerome.Kieffer@ESRF.eu)
#
# 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.
"""Test suite for all pyFAI modules."""
__authors__ = ["Jérôme Kieffer"]
__contact__ = "jerome.kieffer@esrf.eu"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "20/01/2021"
import sys
import unittest
import logging
logger = logging.getLogger(__name__)
from .utilstest import UtilsTest
from . import test_average
from . import test_dummy
from . import test_histogram
from . import test_geometry_refinement
from . import test_azimuthal_integrator
from . import test_peak_picking
from . import test_geometry
from . import test_mask
from . import test_method_registry
from . import test_export
from . import test_saxs
from . import test_integrate
from . import test_bilinear
from . import test_distortion
from . import test_flat
from . import test_utils
from . import test_detector
from . import test_convolution
from . import test_sparse
from . import test_csr
from . import test_blob_detection
from . import test_io
from . import test_io_image
from . import test_calibrant
from . import test_polarization
from . import test_split_pixel
from . import test_bispev
from . import test_bug_regression
from . import test_watershed
from . import test_multi_geometry
from . import test_worker
from . import test_utils_shell
from . import test_utils_stringutil
from . import test_utils_mathutil
from . import test_utils_header
from . import test_utils_ellipse
from . import test_preproc
from . import test_bayes
from . import test_scripts
from . import test_spline
from . import test_sparse_builder
from . import test_goniometer
from . import test_integrate_app
from . import test_integrate_config
from . import test_pyfai_api
from ..opencl import test as test_opencl
from ..gui import test as test_gui
from . import test_invert_geometry
from . import test_massif
from . import test_rectangle
def suite():
testsuite = unittest.TestSuite()
testsuite.addTest(test_gui.suite())
testsuite.addTest(test_average.suite())
testsuite.addTest(test_dummy.suite())
testsuite.addTest(test_histogram.suite())
testsuite.addTest(test_geometry_refinement.suite())
testsuite.addTest(test_azimuthal_integrator.suite())
testsuite.addTest(test_peak_picking.suite())
testsuite.addTest(test_geometry.suite())
testsuite.addTest(test_mask.suite())
testsuite.addTest(test_method_registry.suite())
testsuite.addTest(test_export.suite())
testsuite.addTest(test_saxs.suite())
testsuite.addTest(test_integrate.suite())
testsuite.addTest(test_integrate_app.suite())
testsuite.addTest(test_integrate_config.suite())
testsuite.addTest(test_bilinear.suite())
testsuite.addTest(test_distortion.suite())
testsuite.addTest(test_flat.suite())
testsuite.addTest(test_utils.suite())
testsuite.addTest(test_detector.suite())
testsuite.addTest(test_convolution.suite())
testsuite.addTest(test_sparse.suite())
testsuite.addTest(test_csr.suite())
testsuite.addTest(test_blob_detection.suite())
testsuite.addTest(test_io.suite())
testsuite.addTest(test_io_image.suite())
testsuite.addTest(test_calibrant.suite())
testsuite.addTest(test_polarization.suite())
testsuite.addTest(test_split_pixel.suite())
testsuite.addTest(test_bispev.suite())
testsuite.addTest(test_bug_regression.suite())
testsuite.addTest(test_watershed.suite())
testsuite.addTest(test_multi_geometry.suite())
testsuite.addTest(test_worker.suite())
testsuite.addTest(test_utils_shell.suite())
testsuite.addTest(test_utils_stringutil.suite())
testsuite.addTest(test_utils_mathutil.suite())
testsuite.addTest(test_utils_header.suite())
testsuite.addTest(test_utils_ellipse.suite())
testsuite.addTest(test_preproc.suite())
testsuite.addTest(test_bayes.suite())
# testsuite.addTest(test_scripts.suite())
testsuite.addTest(test_spline.suite())
testsuite.addTest(test_sparse_builder.suite())
testsuite.addTest(test_goniometer.suite())
testsuite.addTest(test_opencl.suite())
testsuite.addTest(test_pyfai_api.suite())
testsuite.addTest(test_invert_geometry.suite())
testsuite.addTest(test_massif.suite())
testsuite.addTest(test_rectangle.suite())
return testsuite
if __name__ == '__main__':
runner = unittest.TextTestRunner()
if runner.run(suite()).wasSuccessful():
UtilsTest.clean_up()
else:
sys.exit(1)
|