[issue43860] unittest increment tests executed

2021-04-17 Thread Irit Katriel
Irit Katriel added the comment: See the section on "Distinguishing test iterations using subtests" https://docs.python.org/3/library/unittest.html#distinguishing-test-iterations-using-subtests -- nosy: +iritkatriel ___ Python tracker

[issue43860] unittest increment tests executed

2021-04-17 Thread Steve Kelem
Steve Kelem added the comment: Technically, you're right, however each domain his its own notion of what "adequate coverage" means. Some projects use software code coverage. I deal with integrated circuit observability/controllability, and stocastic functional testing. Until something, outs

[issue43860] unittest increment tests executed

2021-04-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: ISTM the call count is too indirect to provide a useful indicator of coverage. -- nosy: +rhettinger ___ Python tracker ___ ___

[issue43860] unittest increment tests executed

2021-04-15 Thread Steve Kelem
New submission from Steve Kelem : The unittest module (and most other unittest modules) keep a count of the number of functional tests run, as defined by the number of times test is called. I would like the option to count the number of times that assert is called. I have to run many