Re: [Python-Dev] unittest.TestResult lacks API to separate subtests

2016-06-24 Thread Guido van Rossum
Hi Ilya, That sounds like a fine idea. Can you submit a patch to our bug tracker? bugs.python.org. You'll need to fill out a contributor form as well ( https://www.python.org/psf/contrib/contrib-form/) --Guido On Fri, Jun 24, 2016 at 8:52 AM, Ilya Kazakevich < ilya.kazakev...@jetbrains.com> wrot

[Python-Dev] unittest.TestResult lacks API to separate subtests

2016-06-24 Thread Ilya Kazakevich
Hello, We're developing Python IDE and integrated it with unittest module using TestResult inheritor to track test start, end etc. With Py3K, it supports addSubTest method, that is called after all subtests. But there is no