标签: python pytest
我正在使用pytest并希望检查:
是否可以在设置中有条件地跳过/失败测试(在课堂上分组)?
答案 0 :(得分:2)
您可以在那里拨打pytest.skip(...)和pytest.fail(...)。见" Imperative xfail from within a test or setup function"在文档中。
pytest.skip(...)
pytest.fail(...)