【python-HTMLTestRunner】生成HTMLTestRunner报告报错ERROR 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)

时间:2022-05-21 21:37:44
【python-HTMLTestRunner】生成HTMLTestRunner报告报错:
ERROR 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)
【python-HTMLTestRunner】生成HTMLTestRunner报告报错ERROR 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128) 需要在HTMLTestRunner开头转化utf-8的代码
import sys
reload(sys)
sys.setdefaultencoding('utf8') 问题解决