使用 Nose 框架的 html 报告插件如何让名字拥有时间戳

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

我目前不知道该如何把系统时间附带到测试报告名字里面去,因为每跑一次自动化,新的报告内容就会覆盖旧的报告内容。
看了下使用提示就是:
–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是我自己写死的报告名字。

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