1.生成json格式报告
pytest --alluredir=report test_demo.py
2.查看测试报告
allure generate report/ -o report/html --clean
report/html 表示将html文件生成到那个文件
-o表示输出
3.添加测试步骤
@allure.step(title="标题")
4.添加主要功能描述
@allure.feature("不需要登录")
5. 添加严重等级
BLOCKER 最严重
CRITICAL 严重
NORMAL 普通
MINOR 不严重
TRIVIAL 最不严重
@allure.severity(allure.severity_level.BLOCKER)