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 Kit Yan Choi
Recipients Kit Yan Choi, chris.jerdonek, terry.reedy
Date 2019-09-28.17:14:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569690898.06.0.327162871251.issue38296@roundup.psfhosted.org>
In-reply-to
Content
Pining Chris based on previous discussion in issue16997 ... Hope that's okay.

I notice that the language in my initial message also conflates error and failure. My apologies on the carelessness.

Just to clarify:


    @unittest.expectedFailure
    def test(self):
        THIS_VARIABLE_IS_UNDEFINED  # ---> NameError


should give: ERROR (errors=1)
currently gives: OK (expected failures=1)


By fixing this, we can help projects to maintain their tests decorated with expectedFailure so that the tests remaining to be meaningful.
History
Date User Action Args
2019-09-28 17:14:58Kit Yan Choisetrecipients: + Kit Yan Choi, terry.reedy, chris.jerdonek
2019-09-28 17:14:58Kit Yan Choisetmessageid: <1569690898.06.0.327162871251.issue38296@roundup.psfhosted.org>
2019-09-28 17:14:58Kit Yan Choilinkissue38296 messages
2019-09-28 17:14:57Kit Yan Choicreate