赞
踩
1. 下载
HTMLTestRunner是Python标准库的unittest模块的扩展,扩展模块无法通过pip安装,下载地址如下:
http://tungwaiyip.info/software/HTMLTestRunner.html (鼠标右键另存为)
2. 修改内容
第94行,将import StringIO
修改成import io
第539行,将StringIO.StringIO()
修改成io.StringIO()
第631行,将print >> sys.stderr, “\nTime Elapsed: %s” %(self.stopTime-self.startTime)
修改成print(sys.stderr, “\nTimeElapsed: %s” % (self.stopTime-self.startTime))
第642行,将if not rmap.has_key(cls):
修改成if not cls in rmap:
第766行,将uo = o.decode(“latin-1”)
修改成uo = e
第775行,将ue = e.decode(“latin-1”)
修改成ue = e
第778行,将output = saxutils.escape(uo+ue),
修改成output = saxutils.escape(str(uo)+str(ue)),
改完保存后,将这个 .py 文件放到Python安装的目录Lib文件夹下面,因这个扩展模块是基于Python2开发的,对于Python3来说语法上会有不兼容,故需要对这个文件进行修改后才能使用。
3、检查是否安装成功
在cmd中输入python,输入import HTMLTestRunner,无报错则安装成功。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。