英文:
Pytest: When to use with pytest.raises vs xfail
问题
我有一个方法,当提供了不正确的输入格式时,预期会引发异常。我想知道测试的正确方式是,当提供不正确的输入时,将测试标记为xfail
,还是实际测试它with pytest.raises
以查看是否真的引发了异常。
英文:
I have a method which is expected to raise an exception when an incorrect format of input is provided. I am wondering which is the correct way to test, when an incorrect input is supplied mark the test as xfail
or actually test it with pytest.raises
to see the actual exception is raised.
答案1
得分: 1
你可以使用 xfail
,如果你期望该函数引发一个异常。
但可能会有除了不正确的格式之外的异常情况,你希望将它们视为失败。
然后你可以像下面所示在 xfail
中使用 "raises" 参数:
@pytest.mark.xfail(raises=YourFormatExceptionType)
之后除了在 "raises" 中指定的异常之外的任何其他异常都将被视为普通的失败。
你可以在上述函数中将一个异常或一个异常元组传递给 "raises"。
相关文档:
https://docs.pytest.org/en/latest/how-to/skipping.html#raises-parameter
英文:
You can use xfail
, if you expect the function to raise an exception.
But there may be cases of exceptions other than incorrect format, where you want to consider them as failure.
Then you can use "raises" parameter as shown below in xfail
@pytest.mark.xfail(raises=YourFormatExceptionType)
After this any other exception other than the one specified in raises
, will be considered as a regular failure.
You can pass a single exception or a tuple of exceptions to raises
in the above function.
Related documentation:
https://docs.pytest.org/en/latest/how-to/skipping.html#raises-parameter
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论