gpt4 book ai didi

python - 如何在 python 2.6 中跳过单元测试用例

转载 作者:太空狗 更新时间:2023-10-29 18:28:59 25 4
gpt4 key购买 nike

unittest.skip* 自 python2.7 以来添加了如下装饰器和方法 ( see here for more details ),我发现它们非常有用。

unittest.skip(reason)
unittest.skipIf(condition, reason)
unittest.skipUnless(condition, reason)

但是,我的问题是,如果使用 python2.6,我们应该如何做类似的事情?

最佳答案

如果你不能使用 unittest2 并且不介意在 Python 2.6 中有不同数量的测试,你可以编写简单的装饰器来使测试消失:

try:
from unittest import skip, skipUnless
except ImportError:
def skip(f):
return lambda self: None

def skipUnless(condition, reason):
if condition:
return lambda x: x
else:
return lambda x: None

关于python - 如何在 python 2.6 中跳过单元测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20395524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com