上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 96 下一页
摘要: l1 = [10086, 10010, 110, 120]code = ["xxx","ppppp","oooo","wwww"]@pytest.mark.parametrize("mobile,code",zip(l1,code))def test_case(mobile,code): print 阅读全文
posted @ 2020-01-20 23:02 干it的小张 阅读(135) 评论(0) 推荐(0) 编辑
摘要: pytest.ini [pytest]addopts = -s -vtestpaths = ./scriptspython_files = test_case.pypython_classes = Test*python_functions = test_*xfail_strict = true t 阅读全文
posted @ 2020-01-20 20:52 干it的小张 阅读(123) 评论(0) 推荐(0) 编辑
摘要: import pytestdef test_case_01(): assert 1#无条件跳过类:@pytest.mark.skip()class TestCase(object): """加装饰器跳过测试用例""" @pytest.mark.skip(condition=True, reason= 阅读全文
posted @ 2020-01-20 20:25 干it的小张 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 目录结构: pytest.ini [pytest]addopts = -s -vtestpaths = ./scriptspython_files = test_*.pypython_classes = Test*python_functions = test_* test_case.py def 阅读全文
posted @ 2020-01-20 20:08 干it的小张 阅读(293) 评论(0) 推荐(0) 编辑
摘要: import pytestimport requestsclass TestCase(object): def test_case_01(self): """再执行三""" assert 1 def test_case_02(self): """再执行六""" assert {"title":"v2 阅读全文
posted @ 2020-01-20 19:08 干it的小张 阅读(239) 评论(0) 推荐(0) 编辑
上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 96 下一页