我有一个python脚本,其中一个函数从错误文件中打印一些行。
通过詹金斯执行脚本时出现以下错误。
release/bin/eat2/eat.py", line 553, in _runtest
print('ERROR:' + msg)
UnicodeEncodeError: 'ascii' codec can't encode character '\u0447' in position 315: ordinal not in range(128)
python的默认编码为UTF-8
>>> import sys
>>> sys.getdefaultencoding()
'utf-8'
在执行脚本之前,我试图导出变量PYTHONIOENCODING=UTF-8
。
在脚本开头的以下行添加了>
# coding: utf8
def _check_gpderrors(gdplogfile):
LOGERROR_REGEX = re.compile("^\d+-\d+-\d+ \d+:\d+:\d+ Error:")
errors = []
import codecs
f = codecs.open(logfile, 'r', encoding='utf-8')
for line in f:
if re.match(LOGERROR_REGEX, line):
errors.append(line.strip())
f.close()
return errors
errors = {}
errors = _check_gdperrors(log_file)
for error in errors:
msg = project_info + ': execution failed with error: ' + error + '\n'
print('ERROR:' + msg)
logs.append(msg)
script_error = True
答案 0 :(得分:0)