2020
10-09
10-09
Pytest如何使用skip跳过执行测试
1、@pytest.mark.skip(reason="")--跳过执行测试函数可传入一个非必须参数reason表示原因importpytest@pytest.mark.skip(reason="noreason")deftest_01():print("---用例a执行---")classTestCase():@pytest.mark.skip(reason="noreason")deftest_02(self):print("---用例b执行---")deftest_03(self):print("---用例c执行---")输出结果:test_fixture2.pyss---用例c执行---2、@pytest.mark.skipif(condi...
继续阅读 >