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 bytes/string tests
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-01-09 17:00 by zach.ware, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bytes_string_tests_discovery.diff zach.ware, 2013-01-09 17:00 bytes and str tests fix, version 1 review
Messages (3)
msg179475 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-01-09 17:00
This patch fixes discovery for test_bytes.py.  That fix changes string_tests.py, which breaks test_unicode.py and test_userstring.py, so those two files have been changed as well.  All three test files also use unittest.main() now instead of test_main().
msg179524 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-01-10 05:46
New changeset 55383912c225 by Ezio Melotti in branch '3.3':
#16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery.  Patch by Zachary Ware.
http://hg.python.org/cpython/rev/55383912c225

New changeset 6478c4259ce3 by Ezio Melotti in branch 'default':
#16910: merge with 3.3.
http://hg.python.org/cpython/rev/6478c4259ce3
msg179525 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-01-10 05:47
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:40adminsetgithub: 61114
2013-01-10 05:47:34ezio.melottisetstatus: open -> closed
messages: + msg179525

assignee: ezio.melotti
resolution: fixed
stage: resolved
2013-01-10 05:46:48python-devsetnosy: + python-dev
messages: + msg179524
2013-01-09 17:00:24zach.waresettype: behavior
2013-01-09 17:00:17zach.warecreate