diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-09-15 18:33:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 18:33:31 (GMT) |
commit | ff6d2cc55aac5cc53e331cae145d0cf35ec647b0 (patch) | |
tree | 4f2742e41fef18530c1f785ec538010fd9a71295 /Lib/unittest | |
parent | 9d76d28867c28bcc881b851547a9cd7ac003ae88 (diff) | |
download | cpython-ff6d2cc55aac5cc53e331cae145d0cf35ec647b0.zip cpython-ff6d2cc55aac5cc53e331cae145d0cf35ec647b0.tar.gz cpython-ff6d2cc55aac5cc53e331cae145d0cf35ec647b0.tar.bz2 |
bpo-5846: Deprecate obsolete methods in `unittest` (GH-28299)
Deprecate makeSuite, findTestCases, and getTestCaseNames. Scheduled for removal in Python 3.13.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/__init__.py | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py index 348dc47..e318c63 100644 --- a/Lib/unittest/__init__.py +++ b/Lib/unittest/__init__.py @@ -52,6 +52,7 @@ __all__ = ['TestResult', 'TestCase', 'IsolatedAsyncioTestCase', 'TestSuite', 'addModuleCleanup'] # Expose obsolete functions for backwards compatibility +# bpo-5846: Deprecated in Python 3.11, scheduled for removal in Python 3.13. __all__.extend(['getTestCaseNames', 'makeSuite', 'findTestCases']) __unittest = True @@ -60,8 +61,7 @@ from .result import TestResult from .case import (addModuleCleanup, TestCase, FunctionTestCase, SkipTest, skip, skipIf, skipUnless, expectedFailure) from .suite import BaseTestSuite, TestSuite -from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames, - findTestCases) +from .loader import TestLoader, defaultTestLoader from .main import TestProgram, main from .runner import TextTestRunner, TextTestResult from .signals import installHandler, registerResult, removeResult, removeHandler @@ -70,6 +70,37 @@ from .signals import installHandler, registerResult, removeResult, removeHandler # deprecated _TextTestResult = TextTestResult +from .loader import ( + makeSuite as _makeSuite, + findTestCases as _findTestCases, + getTestCaseNames as _getTestCaseNames, +) + +import warnings +def makeSuite(*args, **kwargs): + warnings.warn( + "unittest.makeSuite() is deprecated and will be removed in Python 3.13. " + "Please use unittest.TestLoader.loadTestsFromTestCase() instead.", + DeprecationWarning, stacklevel=2 + ) + return _makeSuite(*args, **kwargs) + +def getTestCaseNames(*args, **kwargs): + warnings.warn( + "unittest.getTestCaseNames() is deprecated and will be removed in Python 3.13. " + "Please use unittest.TestLoader.getTestCaseNames() instead.", + DeprecationWarning, stacklevel=2 + ) + return _getTestCaseNames(*args, **kwargs) + +def findTestCases(*args, **kwargs): + warnings.warn( + "unittest.findTestCases() is deprecated and will be removed in Python 3.13. " + "Please use unittest.TestLoader.loadTestsFromModule() instead.", + DeprecationWarning, stacklevel=2 + ) + return _findTestCases(*args, **kwargs) + # There are no tests here, so don't try to run anything discovered from # introspecting the symbols (e.g. FunctionTestCase). Instead, all our # tests come from within unittest.test. |