""" @allsure.step 定制详细步骤 @allsure.attach 添加附件信息 @allsure.description 添加各种类型的内容描述 @allsure.title 添加测试标题 @allsure.issue \@allsure.link \@allsure.test_case 添加bug,链接,和测试用例 @allsure.feature\@allsure.story\@allsure.epic 添加项目的功能和模块 @allsure.severity 添加测试严重级别 --与插件returns结合,在报告重试次数中显示 returns 执行重试的次数 """ import allure from a1_Allure_xx import step_import @allure.step("在Allure中声明步骤名称:step_zc_01") def step_zc_01(): print("-----执行步骤01:我是周冲-----") step_zc_02() @allure.step def step_zc_02(): print("-----执行步骤02:我是周冲-----") step_zc_03() @allure.step def step_zc_03(): print("-----执行步骤03-----") def test_with_steps(): step_zc_01() print("执行外部导入核心步骤") step_import()
pytest学习实践-day41:allure实践02:定制详细步骤说明
于 2024-04-12 08:44:53 首次发布