cpython/Lib/unittest
Serhiy Storchaka dea59cf88a
bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)
unittest.TestCase.debug() raises now a SkipTest if the class or
the test method are decorated with the skipping decorator.

Previously it only raised a SkipTest if the test method was decorated
with other decorator in addition to the skipping decorator, or
if SkipTest was explicitly raised in the test or setup methods.
2021-09-18 15:34:22 +03:00
..
test bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446) 2021-09-18 15:34:22 +03:00
__init__.py bpo-45162: Remove many old deprecated unittest features (GH-28268) 2021-09-17 13:33:27 +03:00
__main__.py
_log.py bpo-41943: Fix bug where assertLogs doesn't correctly filter messages… (GH-22565) 2020-11-02 11:25:29 -08:00
async_case.py bpo-41322: Add unit tests for deprecation of test return values (GH-27846) 2021-08-22 21:32:45 +03:00
case.py bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446) 2021-09-18 15:34:22 +03:00
loader.py bpo-45162: Remove many old deprecated unittest features (GH-28268) 2021-09-17 13:33:27 +03:00
main.py
mock.py bpo-45156: Fixes inifite loop on unittest.mock.seal() (GH-28300) 2021-09-14 12:20:40 +02:00
result.py bpo-42934: use TracebackException(compact=True) in unittest.TestResult (GH-24221) 2021-01-15 07:59:44 -08:00
runner.py bpo-45162: Remove many old deprecated unittest features (GH-28268) 2021-09-17 13:33:27 +03:00
signals.py
suite.py bpo-43913: Fix bugs in cleaning up classes and modules in unittest. (GH-28006) 2021-08-30 18:25:59 +02:00
util.py