Pytest:何时使用pytest.raises与xfail

huangapple go评论149阅读模式
英文:

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" 参数:

  1. @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

  1. @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

huangapple
  • 本文由 发表于 2023年8月11日 00:25:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/76877631.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定