Switch some remaining encoding-related bits in test runner

This commit is contained in:
Dan Buch 2017-08-12 22:24:14 -04:00
parent 463d4bada6
commit 3164173947
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

View File

@ -154,13 +154,13 @@ def _combine_coverprofiles(coverprofiles):
tmp_args['encoding'] = 'utf-8'
combined = tempfile.NamedTemporaryFile(**tmp_args)
combined.write(b'mode: set\n')
combined.write('mode: set\n')
for coverprofile in coverprofiles:
with codecs.open(coverprofile, 'r', 'utf-8') as infile:
for line in infile.readlines():
if not line.startswith('mode: '):
combined.write(line.encode('utf-8'))
combined.write(line)
combined.flush()
name = combined.name