index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
unittest
/
case.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99645: Fix a bug in handling class cleanups in unittest.TestCase (GH-99646)
Serhiy Storchaka
2022-11-22
1
-5/+5
*
gh-97837: Change deprecation warning message in `unittest` (#97838)
Nikita Sobolev
2022-10-05
1
-1/+1
*
Revert "bpo-45162: Revert "Remove many old deprecated unittest features"" (GH...
Serhiy Storchaka
2022-06-26
1
-50/+0
*
bpo-45046: Support context managers in unittest (GH-28045)
Serhiy Storchaka
2022-05-08
1
-0/+32
*
bpo-14265: Adds fully qualified test name to unittest output (GH-32138)
Sam Ezeh
2022-03-29
1
-1/+1
*
bpo-45162: Revert "Remove many old deprecated unittest features" (GH-30935)
Gregory P. Smith
2022-01-27
1
-0/+50
*
bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449)
Serhiy Storchaka
2021-09-22
1
-5/+5
*
bpo-30856: Update TestResult early, without buffering in _Outcome (GH-28180)
Serhiy Storchaka
2021-09-19
1
-36/+30
*
bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)
Serhiy Storchaka
2021-09-18
1
-1/+9
*
bpo-45162: Remove many old deprecated unittest features (GH-28268)
Serhiy Storchaka
2021-09-17
1
-50/+0
*
bpo-41620: TestCase.run() now always return a TestResult instance (GH-28030)
Serhiy Storchaka
2021-08-30
1
-1/+1
*
bpo-41322: Add unit tests for deprecation of test return values (GH-27846)
andrei kulakov
2021-08-22
1
-1/+1
*
bpo-44955: Always call stopTestRun() for implicitly created TestResult object...
Serhiy Storchaka
2021-08-22
1
-52/+50
*
bpo-41322: added deprecation warning for tests returning value!=None (GH-27748)
andrei kulakov
2021-08-19
1
-1/+3
*
bpo-39385: Add an assertNoLogs context manager to unittest.TestCase (GH-18067)
Kit Choi
2020-07-01
1
-2/+10
*
bpo-29620: iterate over a copy of sys.modules (GH-4800)
kernc
2020-06-11
1
-1/+1
*
bpo-40275: Avoid importing logging in test.support (GH-19601)
Serhiy Storchaka
2020-04-25
1
-68/+2
*
bpo-39481: PEP 585 for a variety of modules (GH-19423)
Batuhan Taşkaya
2020-04-10
1
-0/+2
*
bpo-39450 Stripped whitespace before parsing the docstring in TestCase.shortD...
Steve Cirelli
2020-02-03
1
-1/+1
*
Remove binding of captured exceptions when not used to reduce the chances of ...
Pablo Galindo
2019-11-19
1
-1/+1
*
bpo-34596: Fallback to a default reason when @unittest.skip is uncalled (#9082)
Naitree Zhu
2019-09-09
1
-0/+5
*
[3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)
Serhiy Storchaka
2019-06-05
1
-18/+1
*
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Serhiy Storchaka
2019-06-01
1
-27/+3
*
bpo-32972: Async test case (GH-13386)
Andrew Svetlov
2019-05-29
1
-4/+16
*
bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)
Serhiy Storchaka
2019-05-06
1
-1/+4
*
Document that TestCase.assertCountEqual() can take iterables (GH-686)
jkleint
2019-04-23
1
-3/+2
*
bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)
Serhiy Storchaka
2019-04-01
1
-3/+41
*
bpo-24412: Adds cleanUps for setUpClass and setUpModule. (GH-9190)
Lisa Roach
2018-11-09
1
-1/+45
*
bpo-34900: Make TestCase.debug() work with subtests (GH-9707)
Bruno Oliveira
2018-10-12
1
-1/+1
*
bpo-34318: Convert deprecation warnings to errors in assertRaises() etc. (GH-...
Serhiy Storchaka
2018-08-19
1
-7/+2
*
Update TestCase.assertAlmostEqual and assertNotAlmostEqual docstrings. (GH-3998)
Ron
2017-10-18
1
-2/+3
*
bpo-30397: Add re.Pattern and re.Match. (#1646)
Serhiy Storchaka
2017-10-04
1
-2/+2
*
bpo-30664: The description of a unittest subtest now preserves the (#2265)
Serhiy Storchaka
2017-06-23
1
-2/+12
*
bpo-30190: improved error msg for assertAlmostEqual(delta=...) (#1331)
Giampaolo Rodola
2017-05-01
1
-14/+21
*
Fix ref cycles in TestCase.assertRaises() (#193)
Victor Stinner
2017-03-27
1
-22/+30
*
Issue #25651: Allow falsy values to be used for msg parameter of subTest()
Berker Peksag
2016-09-21
1
-2/+3
*
Issue #27626: Spelling fixes in docs, comments and internal names
Martin Panter
2016-07-28
1
-2/+2
*
Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
Serhiy Storchaka
2016-04-25
1
-3/+3
*
Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
Robert Collins
2015-08-27
1
-2/+5
|
\
|
*
Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
Robert Collins
2015-08-27
1
-2/+5
|
*
Reverted issue #24134 changes (except new tests).
Serhiy Storchaka
2015-05-16
1
-13/+11
*
|
Issue #20362: Honour TestCase.longMessage correctly in assertRegex.
Robert Collins
2015-08-19
1
-7/+11
*
|
Issue #15836: assertRaises(), assertRaisesRegex(), assertWarns() and
Serhiy Storchaka
2015-05-21
1
-0/+13
*
|
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
Serhiy Storchaka
2015-05-16
1
-44/+44
|
/
*
Fixed English in error message.
Serhiy Storchaka
2015-05-06
1
-1/+1
*
Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
Serhiy Storchaka
2015-05-06
1
-11/+13
*
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
Serhiy Storchaka
2015-01-26
1
-3/+0
*
Issue #9815: assertRaises now tries to clear references to local variables in...
Antoine Pitrou
2014-04-28
1
-0/+3
*
backport: #20145: assert[Raises|Warns]Regex now raise TypeError on bad regex.
R David Murray
2014-03-25
1
-1/+1
*
Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break
Victor Stinner
2013-12-09
1
-1/+13
[next]