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: No unittest.main in Lib/test/test_email/test_inversion.py
Type: Stage: resolved
Components: Tests Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, r.david.murray, vajrasky, zach.ware
Priority: normal Keywords:

Created on 2013-07-16 14:23 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
add_unittest_main_to_test_inversion.txt vajrasky, 2013-07-16 14:23 review
Messages (2)
msg193168 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-07-16 14:23
There is no unittest.main in Lib/test/test_email/test_inversion.py.

In other word, you can not execute the test by doing something like this:

[abcdef@localhost cpython]$ ./python Lib/test/test_email/test_inversion.py

Attached the menial fix.
msg193178 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-16 15:46
New changeset b92db0aebc42 by R David Murray in branch '3.3':
Closes #18475: add unittest.main() to test_email/test_inversions.
http://hg.python.org/cpython/rev/b92db0aebc42

New changeset 48f27b745519 by R David Murray in branch 'default':
Merge: Closes #18475: add unittest.main() to test_email/test_inversions.
http://hg.python.org/cpython/rev/48f27b745519
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62675
2013-07-16 15:46:24python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg193178

resolution: fixed
stage: resolved
2013-07-16 15:35:41brett.cannonsetnosy: + zach.ware
2013-07-16 14:23:30vajraskycreate