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: Skip tests in test_uuid not silently
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: eric.araujo, python-dev, serhiy.storchaka, zach.ware
Priority: normal Keywords: patch

Created on 2013-05-29 12:20 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_uuid.patch serhiy.storchaka, 2013-05-29 12:20 review
Messages (3)
msg190296 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-05-29 12:20
Tests in test_uuid just silently skipped if ran on unsuitable platform or if required module is not available. In such cases tests resulted as succesful passed. The proposed patch uses unittest.skipUnless to mark them as skipped.
msg190410 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2013-05-31 18:56
+1
msg190411 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-31 19:35
New changeset 81c02d2c830d by Serhiy Storchaka in branch '3.3':
Issue #18094: test_uuid no more reports skipped tests as passed.
http://hg.python.org/cpython/rev/81c02d2c830d

New changeset ebd11a19d830 by Serhiy Storchaka in branch 'default':
Issue #18094: test_uuid no more reports skipped tests as passed.
http://hg.python.org/cpython/rev/ebd11a19d830

New changeset 6ceb5bf24da8 by Serhiy Storchaka in branch '2.7':
Issue #18094: test_uuid no more reports skipped tests as passed.
http://hg.python.org/cpython/rev/6ceb5bf24da8
History
Date User Action Args
2022-04-11 14:57:46adminsetgithub: 62294
2013-05-31 19:45:38serhiy.storchakasetstatus: open -> closed
assignee: serhiy.storchaka
stage: patch review -> resolved
resolution: fixed
versions: + Python 2.7
2013-05-31 19:35:33python-devsetnosy: + python-dev
messages: + msg190411
2013-05-31 18:56:25eric.araujosetnosy: + eric.araujo
messages: + msg190410
2013-05-31 16:16:41zach.waresetnosy: + zach.ware
2013-05-29 12:20:00serhiy.storchakacreate