结构设计
测试框架
- 一个单元测试封装在一个.py 文件中
- 将测试数据存在yaml文件中,通过解释器 parametrize 进行参数化
- 通过allure 生成测试报告
测试报告生成
主要内容
-
项目总览
- 本次测试共有多少测试用例、共执行了多长时间
- 测试用例执行成功、执行失败分别有多少
- 每个测试用例的执行时间
-
执行情况分析
- 使用allure的装饰器 定义一些 测试用例的优先级、操作步骤、功能点的描述等
可视化工具
Allure
/* test_01.py*/
import pytest
import allure
@allure.feature("第一个测试接口")
class Testdemo:
def test_1(self):
assert 1 == 1
def test_2(self):
assert 1 == 2
def test_3(self):
assert 1 == 3
def test_4(self):
x = "hello"
assert x == "Hello"
操作步骤
pytest test_01.py --alluredir report/result_o1
allure serve report/result_o1
使用allure时的一些报错:
原因: 环境配置没有配好
解决:https://blog.csdn.net/weixin_43831559/article/details/123372223(参考)