gpt4 book ai didi

python - 暂时禁用单个 Python 单元测试

转载 作者:IT老高 更新时间:2023-10-28 21:08:21 25 4
gpt4 key购买 nike

在 Python 中使用 unittest 模块时如何暂时禁用单个单元测试?

最佳答案

可以使用 unittest.skip 禁用单独的测试方法或类。装饰器。

@unittest.skip("reason for skipping")
def test_foo():
print('This is foo test case.')


@unittest.skip # no reason needed
def test_bar():
print('This is bar test case.')

有关其他选项,请参阅 Skipping tests and expected failures 的文档.

关于python - 暂时禁用单个 Python 单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2066508/

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