在测试类加注解@allure.feature表述整个测试模块
在测试方法加注解@allure.story表述该模块下的某个测试案例或测试场景
执行指定模块或执行测试场景时,可以执行下面命令(allure.feature比allure.story优先级高)
pytest -s -v 测试文件 --allure-feature("模块名")
pytest -s -v 测试文件 --allure-stories("案例名")
对应到html报告内容,可以看到每个测试案例每个步骤的信息
标签:story,测试,feature,allure,模块,pytest From: https://www.cnblogs.com/yinzone/p/18175394