首页 > TAG信息列表 > minversion

@pytest.mark.skipif

目录官网文档有条件的跳过用例可以在模块之间共享模块 官网文档 有条件的跳过用例 import pytest @pytest.mark.skipif(1<2,reason="2大于1") # 条件满足跳过/否则执行 def test_function(self): assert 1 可以在模块之间共享模块 # content of test_mymodule.py impo