[issue4080] pyunit - display time of each test case - patch

2012-02-29 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: @Michael Foord > I am in the process of creating an extension mechanism for unittest > which will make adding this sort of use case to unittest much easier How is it going? -- nosy: +piotr.dobrogost ___ Python tra

[issue4080] pyunit - display time of each test case - patch

2010-07-20 Thread Michael Foord
Michael Foord added the comment: I am in the process of creating an extension mechanism for unittest which will make adding this sort of use case to unittest much easier. *Even* if it is added to the core it should be in the form of an extension (plugin) so please don't update the patch until

[issue4080] pyunit - display time of each test case - patch

2010-07-19 Thread Pawel Prokop
Pawel Prokop added the comment: I think that a delay time of calling a decorator is not important, because this should be constant in each test execution, so no matter. I shall be able to provide a patch in few days. Thanks -- ___ Python tracker

[issue4080] pyunit - display time of each test case - patch

2010-07-18 Thread Mark Lawrence
Mark Lawrence added the comment: Pawel, could you please provide an update wrt Ezio's comment on msg109448, thanks. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue4080] pyunit - display time of each test case - patch

2010-07-06 Thread Ezio Melotti
Ezio Melotti added the comment: The idea is interesting, but I would prefer to have a way to enable/disable this feature (and maybe even specify its format, e.g. the number of decimals). Moving the logic to an external function (possibly used as a decorator) might avoid some code duplication,

[issue4080] pyunit - display time of each test case - patch

2009-11-14 Thread Pawel Prokop
Pawel Prokop added the comment: Repack of unittest was good idea. It is a patch against trunk, one test case is provided and documentation update. -- Added file: http://bugs.python.org/file15332/unittest_runTime.patch ___ Python tracker

[issue4080] pyunit - display time of each test case - patch

2009-05-17 Thread Michael Foord
Michael Foord added the comment: Needs test and documentation. Otherwise looks good. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue4080] pyunit - display time of each test case - patch

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib), Tests -None nosy: +michael.foord priority: -> normal stage: -> test needed versions: +Python 2.7, Python 3.2 ___ Python tracker

[issue4080] pyunit - display time of each test case - patch

2008-10-08 Thread Pawel Prokop
New submission from Pawel Prokop <[EMAIL PROTECTED]>: I've needed to measure each unit test running time to measure the performance changing of each functionality that every test case tests. Latest version of pyunit has only displayed summary running time of the suite, so I've implemented small e