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.

Author sobolevn
Recipients sobolevn
Date 2021-12-30.00:23:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1640823822.61.0.842322675872.issue46198@roundup.psfhosted.org>
In-reply-to
Content
There are two tests with the same name in a same test class in `Lib/test/test_email/test__header_value_parser.py`: `test_get_unstructured_invalid_ew`

1. https://github.com/python/cpython/blob/8e11237c5d24e649b26cc928b52bc37f2fde9c7a/Lib/test/test_email/test__header_value_parser.py#L304
2. https://github.com/python/cpython/blob/8e11237c5d24e649b26cc928b52bc37f2fde9c7a/Lib/test/test_email/test__header_value_parser.py#L398

So, because of this bad naming - the first test is always shadowed by the second one and is silently skipped. With my patch: 1660 tests, without: 1659 tests.

PR to rename the second test is on its way.
History
Date User Action Args
2021-12-30 00:23:42sobolevnsetrecipients: + sobolevn
2021-12-30 00:23:42sobolevnsetmessageid: <1640823822.61.0.842322675872.issue46198@roundup.psfhosted.org>
2021-12-30 00:23:42sobolevnlinkissue46198 messages
2021-12-30 00:23:42sobolevncreate