展示的是通过自定义runner,实现传入air目录,并在每个air文件夹下生成报告的代码
核心是两个方法,剩下的都是对air解析和封装,比较简单不过多解释了
- run_script
- simple_report
for i in os.listdir(cases_absPath):
if not i.endswith("air"):
continue
case_absPath = os.path.join(cases_absPath, i)
defalut_args.script = case_absPath
defalut_args.log = os.path.join(case_absPath, "log")
try:
if os.path.exists(defalut_args.log):
shutil.rmtree(defalut_args.log)
runner.run_script(parsed_args=defalut_args, testcase_cls=LbkRunner)
except:
print("error")
finally:
simple_report(filepath=defalut_args.script, logpath=defalut_args.log,
output=case_absPath + "/report.html")