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 serhiy.storchaka
Recipients dmaurer, ezio.melotti, lisroach, michael.foord, rbcollins, serhiy.storchaka, terry.reedy
Date 2021-09-18.12:26:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631967965.08.0.711050403387.issue36674@roundup.psfhosted.org>
In-reply-to
Content
PR 28446 makes TestCase.debug() honoring the skipping decorator.

The difference with PR 13180:

1. It does not run setUp() and tearDown() for tests decorated with the skipping decorator, as TestCase.run().
2. It has the same behavior for tests decorated with the skipping decorator and tests using skipTest() or raising a SkipTest -- raises a SkipTest.
3. Tests actually test the skipping decorator.
History
Date User Action Args
2021-09-18 12:26:05serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, dmaurer, rbcollins, ezio.melotti, michael.foord, lisroach
2021-09-18 12:26:05serhiy.storchakasetmessageid: <1631967965.08.0.711050403387.issue36674@roundup.psfhosted.org>
2021-09-18 12:26:05serhiy.storchakalinkissue36674 messages
2021-09-18 12:26:04serhiy.storchakacreate