HTMLTestRunner下载地址:http://tungwaiyip.info/software/HTMLTestRunner.html
- 首先根据这个链接下载文件到Python下的Lib目录下的site-packages;
- shell 模式下输入
import HTMLTestRunner
不报错就证明安装好了 - 然后这个是不支持python3语法的,要自己改一下代码,具体更改如下;
第94行: import StringIO 改为 import io
第539行:self.outputBuffer = StringIO.StringIO() 改为self.outputBuffer = io.BytesIO()
第642行:if not rmap.has_key(cls): 改为 if not cls in rmap:
第772行:ue = e.decode('latin-1') 改成 ue = e
第776行:uo = o.decode ('latin-1') 改成 uo=o
第768行:uo = o 改成 uo = o.decode('utf-8')
第774行:ue = e 改成 ue = e.decode('utf-8')
第631行:print >>sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime) 改成 print('\nTime Elapsed: %s' % (self.stopTime-self.startTime),file=sys.stderr)
第118行:self.fp.write(s) 改为 self.fp.write(bytes(s,'UTF-8'))
HTMLTestRunner_PY3下载地址:https://github.com/huilansame/HTMLTestRunner_PY3
这是一个直接支持Python3的HTMLTestRunner文件
网友评论