单元测试之pytest

一、命名规则

Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨

二、Pytest生成自带的html测试报告

pip install pytest-html

2.1 方式一

pytest.main(["--html=./report.html","模块.py"])

2.2 方式二

pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001'])

2.3 方式三

pytst.main(['-x','--html=./report.html','t12est000.py'])

-x:出现一条测试用例失败就退出测试

-v:丰富信息模式, 输出更详细的用例执行信息

-s:显示print内容

-q:简化结果信息,不会显示每个用例的文件名

三、Pytest的运行方式

.点号,表示用例通过F表示失败 FailureE表示用例中存在异常 Error

四、文件读取

4.1 读取csv文件

4.2 读取xml文件

五、Allure

Allure是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成。


其次要安装allure

pip install allure-pytest

5.1 Allure常用的几个特性

@allure.feature# 用于描述被测试产品需求

@allure.story# 用于描述feature的用户场景,即测试需求

with allure.step():# 用于描述测试步骤,将会输出到报告中

allure.attach# 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

5.1.1 allure.feature

@allure.feature # 用于描述被测试产品需求

5.1.2 allure.story

@allure.story # 用于描述feature的用户场景,即测试需求

5.1.3 with allure.step()

用于描述测试步骤,将会输出到报告中

5.1.4 allure.attach

用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

你可能感兴趣的:(单元测试之pytest)