This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author remi.lapeyre
Recipients ezio.melotti, michael.foord, p-ganssle, rbcollins, remi.lapeyre
Date 2018-11-27.15:36:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543332960.7.0.788709270274.issue35327@psf.upfronthosting.co.za>
In-reply-to
Content
Did you notice that `skipped 'Not supported'` will be displayed once per skipped subtest so changing your `for i in range(1, 3):` by `for i in range(1, 5):` will show:

    python3 -m unittest -v
    test_something (test2.SomeTest) ... skipped 'Not supported'
    skipped 'Not supported'
    skipped 'Not supported'


Do you think it should show something like:

    python3 -m unittest -v
    test_something (test2.SomeTest) ... SubTest skipped 'Not supported'
                                        SubTest skipped 'Not supported'
                                        SubTest skipped 'Not supported'
?
History
Date User Action Args
2018-11-27 15:36:00remi.lapeyresetrecipients: + remi.lapeyre, rbcollins, ezio.melotti, michael.foord, p-ganssle
2018-11-27 15:36:00remi.lapeyresetmessageid: <1543332960.7.0.788709270274.issue35327@psf.upfronthosting.co.za>
2018-11-27 15:36:00remi.lapeyrelinkissue35327 messages
2018-11-27 15:36:00remi.lapeyrecreate