1. 下载地址
官方文档;
Allure Framework
参考文档: 最全的Pytest+Allure使用教程,建议收藏 - 知乎
https://github.com/allure-framework
1.2安装Python依赖
windows:pip install allure-pytest
2. 脚本
用例
import pytest
class Test_Smoke:def test_01(self):assert 1+1==2@pytest.mark.smokedef test_02(self):assert 1+2==1@pytest.mark.smokedef test_03(self):assert 1 + 2 == 3
import pytestif __name__=='__main__':print("hhhhhhh")pytest.main(['-s', '-v', '-m smoke', './somke_test','--alluredir=./report/allure', '--html=./report/result.html'])
清空历史数据'--clean-alluredir'
# 清空历史数据'--clean-alluredir'
pytest.main(['-s', '-v', '-m smoke', './somke_test','--clean-alluredir', '--alluredir=./report/allure', '--html=./report/result.html'])