1. 5a6d4bf Fixes Issue #20165: The unittest module no longer considers tests marked with by Gregory P. Smith · 11 years ago
  2. b5c66f8 Fix breakage in TestSuite.countTestCases() introduced by issue #11798. by Antoine Pitrou · 11 years ago
  3. 184ec79 Remove commented out debugging code (remnants of issue #18996). by Serhiy Storchaka · 11 years ago
  4. 031bd53 Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break by Victor Stinner · 11 years ago
  5. 514afeb Merge by Michael Foord · 11 years ago
  6. e28bb15 Issue 17457: extend test discovery to support namespace packages by Michael Foord · 11 years ago
  7. bc39869 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  8. 5665bc5 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  9. 6c6b3f7 Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). by Antoine Pitrou · 11 years ago
  10. d5d0bc3 Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). by Antoine Pitrou · 11 years ago
  11. 77622f5 Issue #18996: TestCase.assertEqual() now more cleverly shorten differing by Serhiy Storchaka · 11 years ago
  12. 468ec34 Remove shadowed test by Michael Foord · 11 years ago
  13. 0715b9f Issue #18937: Add an assertLogs() context manager to unittest.TestCase to ensure that a block of code emits a message using the logging module. by Antoine Pitrou · 11 years ago
  14. a19b1a6 Adjust comment by Antoine Pitrou · 11 years ago
  15. 4b3c58c Issue #19013: add a __main__ to unittest.test.testmock to ease CLI invocation by Antoine Pitrou · 11 years ago
  16. e1ba8df Issue #19013: add a __main__ to unittest.test to ease CLI invocation by Antoine Pitrou · 11 years ago
  17. 356bdeb Issue #19013: add unittest.main() epilogs to unittest.mock's own test modules by Antoine Pitrou · 11 years ago
  18. 1d7c8c9 Issue #19013: add unittest.main() epilogs to unittest's own test modules by Antoine Pitrou · 11 years ago
  19. 8913a6c Issue #11798: fix tests for regrtest -R : by Andrew Svetlov · 11 years ago
  20. de2800f Issue #17974: Switch unittest from using getopt to using argparse. by Serhiy Storchaka · 11 years ago
  21. eb97368 Issue #11798: TestSuite now drops references to own tests after execution. by Andrew Svetlov · 11 years ago
  22. e0c6916 #18741: merge with 3.3. by Ezio Melotti · 11 years ago
  23. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  24. b2855cc #18663: merge with 3.3. by Ezio Melotti · 11 years ago
  25. d51914c #18663: document that assertAlmostEqual also works when the values are equal and add tests. by Ezio Melotti · 11 years ago
  26. 06d3abb clean the environment from pre-existing PYTHONWARNINGS for test_warnings by Łukasz Langa · 11 years ago
  27. 6ae4667 clean the environment from pre-existing PYTHONWARNINGS for test_warnings by Łukasz Langa · 11 years ago
  28. c601dc1 Merge #14971: Use class method name, not function.__name__, during unittest discovery. by R David Murray · 11 years ago
  29. 5e2f593 #14971: Use class method name, not function.__name__, during unittest discovery. by R David Murray · 11 years ago
  30. 8ab1e51 Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  31. 8b2cd75 Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  32. 22e162f Fix bug in TestResult.addSubTest() by Antoine Pitrou · 11 years ago
  33. cf936c7 #17510: avoid using deprecated assertEquals method in test_program. Patch by Daniel Black. by Ezio Melotti · 11 years ago
  34. c9b3ef2 Issue #16997: unittest.TestCase now provides a subTest() context manager to procedurally generate, in an easy way, small test instances. by Antoine Pitrou · 11 years ago
  35. 04cbe0c Closes issue 17467. Add readline and readlines support to unittest.mock.mock_open by Michael Foord · 11 years ago
  36. 80cbc9e Closes issue 16709. unittest test discovery sorts test files for consistent test ordering by Michael Foord · 11 years ago
  37. eae2b38 #16935: unittest now counts the module as skipped if it raises SkipTest, instead of counting it as an error. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  38. 2005447 Issue #15132: Allow a list for the defaultTest argument of unittest.TestProgram by Petri Lehtinen · 12 years ago
  39. 890d72d Merge. Closes issue 17052. by Michael Foord · 12 years ago
  40. b71b8ec Merge by Michael Foord · 12 years ago
  41. f78f5b1 Correction to issue 17052 fix by Michael Foord · 12 years ago
  42. 4e08f78 Merge. Closes issue 17052. by Michael Foord · 12 years ago
  43. a23a39c Merge by Michael Foord · 12 years ago
  44. 8fd396b Issue 17502: unittest discovery should use self.testLoader by Michael Foord · 12 years ago
  45. 5c64df7 Issue #17015: When it has a spec, a Mock object now inspects its signature when matching calls, so that arguments can be matched positionally or by name. by Antoine Pitrou · 12 years ago
  46. d1da29c Merge by Michael Foord · 12 years ago
  47. 6debd76 Closes issue 15505. unittest.installHandler and non-callable signal handlers. by Michael Foord · 12 years ago
  48. 28d591c Closes issue 15323. Improve failure message of Mock.assert_called_once_with by Michael Foord · 12 years ago
  49. 8ef1fce Merge by Michael Foord · 12 years ago
  50. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  51. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  52. 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 12 years ago
  53. f99983d Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  54. b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  55. 3af125a Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments. by Michael Foord · 12 years ago
  56. 2cd4873 Closes issue 14636. mock objects raise exceptions from an iterable side_effect by Michael Foord · 12 years ago
  57. 656319e Make unittest.mock.create_autospec resilient against AttributeError on original object by Michael Foord · 12 years ago
  58. c287062 unittest.mock.PropertyMock return value and attributes are now standard MagicMocks by Michael Foord · 12 years ago
  59. e58a562 unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec by Michael Foord · 12 years ago
  60. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  61. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  62. a74b3aa Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  63. ebff097 And another one... mock import fix. by Michael Foord · 12 years ago
  64. 83a1685 Fix another mock import by Michael Foord · 12 years ago
  65. 0ca9acd Fix import failure in mock test by Michael Foord · 12 years ago
  66. 345266a PEP 417: Adding unittest.mock by Michael Foord · 12 years ago
  67. 5f99ced Refactor unittest command line handling to always use optparse by Michael Foord · 12 years ago
  68. c53ae58 Drop unused import in unittest package. by Florent Xicluna · 13 years ago
  69. b6ffa79 test that TestCase doesn't get cycles by Benjamin Peterson · 13 years ago
  70. b4dc250 Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert. by Ezio Melotti · 13 years ago
  71. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  72. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  73. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  74. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  75. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  76. 45763d0 Merge with 3.2. by Ezio Melotti · 13 years ago
  77. 60c3c9f Save a copy of sys.warnoptions in test_program. by Ezio Melotti · 13 years ago
  78. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 13 years ago
  79. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  80. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 13 years ago
  81. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  82. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 14 years ago
  83. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  84. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  85. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  86. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  87. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  88. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  89. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  90. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  91. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago
  92. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago
  93. 3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. by Ezio Melotti · 14 years ago
  94. 8f77630 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. by Ezio Melotti · 14 years ago
  95. 36526bf Correct comment in unittest test by Michael Foord · 14 years ago
  96. 37d120a Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest' by Michael Foord · 14 years ago
  97. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  98. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  99. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 14 years ago
  100. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago