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: Fix test discovery for test_random.py
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: brett.cannon, ezio.melotti, python-dev, zach.ware
Priority: normal Keywords: patch

Created on 2013-04-18 15:03 by zach.ware, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_random_discovery.diff zach.ware, 2013-04-18 15:03 test_random.py fix, version 1
Messages (3)
msg187257 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-04-18 15:03
This one had subclassing issues, and SystemRandom_TestBasicOps was being skipped by exclusion from the list of tests passed to support.run_unittest, so it's been converted to a skip decorator.
msg187334 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-04-19 02:46
New changeset 678564fc0962 by Ezio Melotti in branch '3.3':
#17789: test_random now works with unittest test discovery.  Patch by Zachary Ware.
http://hg.python.org/cpython/rev/678564fc0962

New changeset ac352d7d8058 by Ezio Melotti in branch 'default':
#17789: merge with 3.3.
http://hg.python.org/cpython/rev/ac352d7d8058
msg187335 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-04-19 02:46
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61989
2013-04-19 02:46:51ezio.melottisetstatus: open -> closed
messages: + msg187335

assignee: ezio.melotti
resolution: fixed
stage: resolved
2013-04-19 02:46:21python-devsetnosy: + python-dev
messages: + msg187334
2013-04-18 15:03:51zach.warecreate