[issue25687] Error during test case and tearDown

2016-03-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset cecd39887faa by Ezio Melotti in branch '3.5': #25687: clarify that errors in tearDown increase the total number of reported errors. Initial patch by HyeSoo Park. https://hg.python.org/cpython/rev/cecd39887faa New changeset d5f5a6f514f2 by Ezio

[issue25687] Error during test case and tearDown

2016-03-12 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue25687] Error during test case and tearDown

2016-03-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti stage: needs patch -> patch review ___ Python tracker ___

[issue25687] Error during test case and tearDown

2016-03-12 Thread HyeSoo Park
HyeSoo Park added the comment: I added 'additional' and (thus increasing the total number of error counts.) to 'teardown' explanation of the document to make it more clear. -- keywords: +patch nosy: +HyeSoo Park Added file: http://bugs.python.org/file42145/issue25687.diff

[issue25687] Error during test case and tearDown

2016-01-20 Thread Gedai Tamás Bence
Gedai Tamás Bence added the comment: I think it's in the docs, although if you don't find it sufficient I might try to update it. `tearDown method `_ "This is called even if the test method raised an exception [...]

[issue25687] Error during test case and tearDown

2015-11-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +ezio.melotti, michael.foord, rbcollins versions: +Python 3.5, Python 3.6 -Python 3.2, Python 3.3 ___ Python tracker

[issue25687] Error during test case and tearDown

2015-11-20 Thread Benno Leslie
New submission from Benno Leslie: I'm not sure if this should be considered a bug, but the behaviour is surprising and not clearly documented. I a have a very simple test that has an error during both the test case, and during tearDown. """ import unittest class Test(unittest.TestCase):