Current Path: > > opt > hc_python > > lib > python3.12 > > site-packages > > nose
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
ext | Directory | - | - | |
plugins | Directory | - | - | |
sphinx | Directory | - | - | |
tools | Directory | - | - | |
__init__.py | File | 404 bytes | April 04 2025 08:02:21. | |
__main__.py | File | 144 bytes | April 04 2025 08:02:21. | |
case.py | File | 13224 bytes | April 04 2025 08:02:21. | |
commands.py | File | 6316 bytes | April 04 2025 08:02:21. | |
config.py | File | 25282 bytes | April 04 2025 08:02:21. | |
core.py | File | 13071 bytes | April 04 2025 08:02:21. | |
exc.py | File | 376 bytes | April 04 2025 08:02:21. | |
failure.py | File | 1273 bytes | April 04 2025 08:02:21. | |
importer.py | File | 5978 bytes | April 04 2025 08:02:21. | |
inspector.py | File | 7042 bytes | April 04 2025 08:02:21. | |
loader.py | File | 25578 bytes | April 04 2025 08:02:21. | |
proxy.py | File | 6879 bytes | April 04 2025 08:02:21. | |
pyversion.py | File | 7454 bytes | April 04 2025 08:02:21. | |
result.py | File | 6741 bytes | April 04 2025 08:02:21. | |
selector.py | File | 8985 bytes | April 04 2025 08:02:21. | |
suite.py | File | 22405 bytes | April 04 2025 08:02:21. | |
twistedtools.py | File | 5540 bytes | April 04 2025 08:02:21. | |
usage.txt | File | 4425 bytes | April 04 2025 08:02:21. | |
util.py | File | 20334 bytes | April 04 2025 08:02:21. |
import logging import unittest from traceback import format_tb from nose.pyversion import is_base_exception log = logging.getLogger(__name__) __all__ = ['Failure'] class Failure(unittest.TestCase): """Unloadable or unexecutable test. A Failure case is placed in a test suite to indicate the presence of a test that could not be loaded or executed. A common example is a test module that fails to import. """ __test__ = False # do not collect def __init__(self, exc_class, exc_val, tb=None, address=None): log.debug("A failure! %s %s %s", exc_class, exc_val, format_tb(tb)) self.exc_class = exc_class self.exc_val = exc_val self.tb = tb self._address = address unittest.TestCase.__init__(self) def __str__(self): return "Failure: %s (%s)" % ( getattr(self.exc_class, '__name__', self.exc_class), self.exc_val) def address(self): return self._address def runTest(self): if self.tb is not None: if is_base_exception(self.exc_val): raise self.exc_val.with_traceback(self.tb) raise self.exc_class(self.exc_val).with_traceback(self.tb) else: raise self.exc_class(self.exc_val)
SILENT KILLER Tool