HTML文件下载地址:
http://tungwaiyip.info/software/HTMLTestRunner_0_8_2/HTMLTestRunner.py.
下载文件后Python3版本需要修改部分代码:
#第94行
import StringIO
#修改为:
import io
#第539行
self.outputBuffer = StringIO.StringIO()
#修改为:
self.outputBuffer = io.StringIO()
#第631行
#print >>sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime)
#修改为:
print(sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime))
#第642行
if not rmap.has_key(cls):
#修改为:
if not cls