问题:pytest+allure生成测试报告打开allure报告数据为NaN%
1)直接在脚本中执行乘车allure报告的命令:
os.system(‘allure generate report/report_data -o report/html --clean‘)
os.system(‘allure serve report/report_data‘)
2)在pycharm中找到index.html右击open in Browser,打开allure的测试报告出现数据为NaN%
3)pytest+allure生成测试报告打开allure报告数据为NaN%的解决方法
①在本地的cmd或者pycharm中控制台的下方点击“Terminal”进入命令行:
②进入运行脚本所在的根目录(如:test/test1/test_01.py,则进入test目录即可),输入命令:
#allure generate report/report_data -o report/html --clean
生成测试报告,将json文件生成报告保存在指定目录(report/html)下
allure generate 测试结果数据所在目录 -o 测试报告保存的目录 --clean
--clean 目的是先清空测试报告目录,再生成新的测试报告
③进入运行脚本所在的根目录(如:test/test1/test_01.py,则进入test目录即可),输入命令:
#allure serve report/report_data 打开测试报告
pytest+allure生成测试报告打开allure报告数据为NaN%的解决方法
原文:https://www.cnblogs.com/xiaomin-6767/p/13697634.html