美文网首页@ IT·测试
Python3安装HTMLTestRunner

Python3安装HTMLTestRunner

作者: 码上版码 | 来源:发表于2020-06-07 12:08 被阅读0次

    1.下载HTMLTestRunner地址:http://tungwaiyip.info/software/HTMLTestRunner.html

    2.下载的HTMLTestRunner.py是针对python2写的,所以需要改成python3适合的内容:

    问题1:No module named StringIO,
    原因:python 3 中 没有 improt StringIO 这个模块,需要将94行改成import io。


    image.png

    539行 self.outputBuffer = StringIO.StringIO() 要改成self.outputBuffer = io.BytesIO()


    image.png
    问题2:AttributeError: ‘dict’ object has no attribute ‘has_key’
    原因:python 3 字典类型object 已经不支持 has_key函数,需要使用in 来进行遍历。
    642行: if not rmap.has_key(cls): 需要换成 if not cls in rmap:
    image.png

    问题3:‘str’ object has no attribute ‘decode’
    原因:python3 里面对字符的操作中,decode已经被拿掉了。需要修改:
    772行: ue = e.decode(‘latin-1’) 直接改成 ue = e
    766行: uo = o.decode(‘latin-1’),改成 uo=o ;
    768行:uo = o ,直接改成 uo = o.decode(‘utf-8’) 。
    774行: ue = e, 改成 ue = e.decode(‘utf-8’)。


    image.png
    注:如果772和766行修改之后768和774没有同步修改,会报错“TypeError: can’t concat bytes to str”,原因:778行的内容escape(uo+ue) 。因为766行给uo赋值后走else流程,uo被赋值的是bytes类型的值。 而bytes类型不能直接转化为str类型。所以需要在768给uo赋值的时候先将bytes类型转换为 str类型(ue同理)。
    问题4:TypeError: unsupported operand type(s) for >>: ‘builtin_function_or_method’ and ‘RPCProxy’
    原因: python3 不支持 print >> sys.stderr 的写法,这里定义输出流使用print(“This is print str”,file=sys.stderr) 的方式。
    631行:把print的语句修改掉,原来是print >>sys.stderr, ‘\nTime Elapsed: %s’ % (self.stopTime-self.startTime), 可改成 print(’\nTime Elapsed: %s’ % (self.stopTime-self.startTime),file=sys.stderr)
    image.png
    问题5:TypeError: ‘str’ does not support the buffer interface
    原因:在118行中s表示str类型,需要把传过来的s转化为bytes类型。
    118行,把 self.fp.write(s) 修改为 self.fp.write(bytes(s,‘UTF-8’)) 。
    image.png
    3、保存修改后的“HTMLTestRunner.py”文件

    4、python3 调用语句方式如下:
    1)python3 打开文件使用 open方法,不再用file。
    2)fp = file(filename,‘wb’)替换成 fp = open(filename,‘wb’);
    3)关闭文件可用fp.close()
    5、将“HTMLTestRunner.py”放到python3安装路径 lib目录下
    1)打开终端输入python3,进入python3交互模式

    import sys #导入系统模块
    sys.path #调用系统配置
    exit() #退出python3交互模式


    image.png

    2)将HTMLTestRunner.py文件拷贝到/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6目录下:
    cp + HTMLTestRunner.py文件存放路径 + python3系统路径


    image.png
    3)打开终端输入python3进入交互模式:
    import HTMLTestRunner
    如果没有报错,则说明添加成功和修改配置成功。
    image.png

    相关文章

      网友评论

        本文标题:Python3安装HTMLTestRunner

        本文链接:https://www.haomeiwen.com/subject/qmxctktx.html