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.

classification
Title: unittest: add tests for skipping and errors in cleanup
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, michael.foord, miss-islington, rbcollins, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2021-09-04 20:01 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28166 merged serhiy.storchaka, 2021-09-04 20:03
PR 28174 merged miss-islington, 2021-09-05 07:34
PR 28175 merged miss-islington, 2021-09-05 07:34
Messages (4)
msg401056 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-04 20:01
The proposed PR adds tests for skipping and errors in cleanup: after success, after failure, and in combination with the expectedFailure decorator.
msg401073 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-05 07:34
New changeset 28264269de9ff88d9ee7110fc56ac2d2db275bec by Serhiy Storchaka in branch 'main':
bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)
https://github.com/python/cpython/commit/28264269de9ff88d9ee7110fc56ac2d2db275bec
msg401075 - (view) Author: miss-islington (miss-islington) Date: 2021-09-05 07:55
New changeset 8342c526e9cf138a10668fa9e487d92ee1a3a42c by Miss Islington (bot) in branch '3.10':
bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)
https://github.com/python/cpython/commit/8342c526e9cf138a10668fa9e487d92ee1a3a42c
msg401076 - (view) Author: miss-islington (miss-islington) Date: 2021-09-05 07:56
New changeset f91d974ce61b2a9922391f723b388a623284fb0a by Miss Islington (bot) in branch '3.9':
bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)
https://github.com/python/cpython/commit/f91d974ce61b2a9922391f723b388a623284fb0a
History
Date User Action Args
2022-04-11 14:59:49adminsetgithub: 89265
2021-09-05 10:19:42serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-09-05 07:56:27miss-islingtonsetmessages: + msg401076
2021-09-05 07:55:42miss-islingtonsetmessages: + msg401075
2021-09-05 07:34:29miss-islingtonsetpull_requests: + pull_request26602
2021-09-05 07:34:25miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request26601
2021-09-05 07:34:23serhiy.storchakasetmessages: + msg401073
2021-09-04 20:03:06serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request26595
2021-09-04 20:01:13serhiy.storchakacreate