码迷,mamicode.com
首页 > 编程语言 > 详细

Python+pytest+allure 环境搭建

时间:2020-07-24 16:27:58      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:add   ken   comment   tor   函数   数据驱动   环境配置   python   art   

1、allure环境配置

Pytest 参数化(数据驱动)

# 待测函数 def add(a, b): return a + b

# 测试类参数化
@pytest.mark.parametrize(‘a, b, c‘, [(1,2,3), (4,5,9)])
class TestAdd():
def test_add1(self, a, b, c):
assert add(a, b) == c

def test_add2(self, a, b, c):
assert add(a, b) == c

Python+pytest+allure 环境搭建

标签:add   ken   comment   tor   函数   数据驱动   环境配置   python   art   

原文地址:https://www.cnblogs.com/kaifl/p/13370977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!