我在做 appium 的测试时候,使用环境如下:
windows10-64bits
python-2.7
nose-1.3.7
nose-html-reporting-0.2.3,链接如下:
https://pypi.python.org/pypi/nose-html-reporting

我目前不知道该如何把系统时间附带到测试报告名字里面去,因为每跑一次自动化,新的报告内容就会覆盖旧的报告内容。
看了下使用提示就是:
--html-file=FILE Path to html file to store the report in. Default is nosetests.html in the working directory
可以设定报告的路径,但是如何把系统时间弄进去感觉没思路。
希望的报告形式是:
20180102_2140_uitestreport.html
20180102_2145_uitestreport.html
......

我把 nose 的参数放进了配置文件--nose_config.cfg
[nosetests]

with-html=True
html-report=report/mytestreport.html
etc...

report 是放报告的文件夹名字,mytestreport.html 是我自己写死的报告名字。

求大佬支招或者提供思路,万分感谢!!!


↙↙↙阅读原文可查看相关链接,并与作者交流