筛选最新生成的报告——sort
Posted 残~枫~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了筛选最新生成的报告——sort相关的知识,希望对你有一定的参考价值。
筛选出最新报告发送,返回报告路径
import os
def filePath(path):
return os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))),path)
#所有报告都放在report下面
def reportPath():
#筛选出最新生成的报告
reportPath=filePath(‘report‘)
listDir=os.listdir(reportPath)
listDir.sort(key=lambda fn:os.path.getmtime(reportPath+"\\"+fn) if not os.path.isdir(reportPath+‘\\‘+fn) else 0)
file_new=os.path.join(reportPath,listDir[-1])
return file_new
以上是关于筛选最新生成的报告——sort的主要内容,如果未能解决你的问题,请参考以下文章
selenium测试报告生成找到测试报告路径实现发邮件(整合)
pytest + yaml 框架 -10.allure 生成报告
pytest + yaml 框架 -10.allure 生成报告