Tests: switching stdout to blocking before printing log.

This is another attempt to fix the following error message:
BlockingIOError: [Errno 11] write could not complete without blocking
This commit is contained in:
Max Romanov
2020-07-22 10:05:10 +03:00
parent ef71948196
commit 661c223eda

View File

@@ -407,8 +407,11 @@ class TestUnit(unittest.TestCase):
print('Path to unit.log:\n' + path + '\n')
if TestUnit.print_log:
os.set_blocking(sys.stdout.fileno(), True)
sys.stdout.flush()
if data is None:
with open(path, 'r', encoding='utf-8', errors='ignore') as f:
data = f.read()
print(data)
shutil.copyfileobj(f, sys.stdout)
else:
sys.stdout.write(data)