1.安装JDK1.8 才可运行allure,直接百度 2.下载Allure的安装包(版本号:2.13.5) https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/ 3.解压Allure压缩包 4.配置Allure到环境变量,到path里面,D:\allure-2.13.5\bin 5.验证: allure --version allure测试报告是基于pytest运行的,运行之后生成一个json报告数据源,来实现结果的展示,以一个工程的形态展示本次测试的所有测试结果,需要集成pytest实现allure的展示。
# 需要安装: pip install allure-pytest # 验证: pip show allure-pytest
PS:allure报告生成之后,要发给别人,必须发送report的整个文件夹,并且要用pycharm 才能打开 标签:allure,展示,配置,pytest,Allure,pip,2.13 From: https://www.cnblogs.com/shukeshu/p/16769834.html