pytest 跳过测试用例 skip
Posted jodie2019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest 跳过测试用例 skip相关的知识,希望对你有一定的参考价值。
@pytest.mark.skip(reason="no way of currently testing this")
@pytest.mark.skipif(sys.version_info < (3,6), reason="requires python3.6 or higher")
果条件在收集期间评估为True,则将跳过测试函数,具有指定的原因使用-rs时出现在摘要中
skip跳过方法、类或模块
以上是关于pytest 跳过测试用例 skip的主要内容,如果未能解决你的问题,请参考以下文章
pytest学习和使用10-Pytest中的测试用例如何跳过执行?