需要安装
pytest
和
pytest-html(
生成
html
测试报告)
pip install pytest
和
pip install pytest-html
命名规则:
Pytest
单元测试中的类名和方法名必须是以
test
开头
,
执行中只能找到
test
开头的类和方法,比
unittest更加严谨
unittest
:
Setup>> setupclass , teardown >> teardownclass
(课堂作业)
Pytest: setup, setup_class
和
teardown, teardown_class
函数
(
和
unittest
执行效果一样
)
运行于测试方法的始末,即
:
运行一次测试函数会运行一次
setup
和
teardown
运行于测试方法的始末
,
但是不管有多少测试函数都只执行一次
setup_class
和
teardown_class
Pytest生成自带的html测试报告:
需要下载pytest-html模块(python自带的生成测试报告模块)
pip install pytest-html
Pytest调用语句
Pytest的运行方式 :
.
点号,表示用例通过
F
表示失败
Failure
E
表示用例中存在异常
Error
文件读取:
allure
Allure
是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如
TestNG
、
Pytest
、
JUint
等。它简单易用,易于集成。
首先配置
allure
的环境变量
验证allure是否配置成功
其次要安装allure
pip install allure-pytest
allure-pytest
是
Pytest
的一个插件,通过它我们可以生成
Allure
所需要的用于生成测试报告的数据
Allure
常用的几个特性
@allure.feature #
用于描述被测试产品需求
@allure.story #
用于描述
feature
的用户场景,即测试需求
with allure.step
():
#
用于描述测试步骤,将会输出到报告中
allure.attach #
用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等