-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
The redirection of stdout and stderr in the flake8 checker is not working as expected.
with change_folder(temp_folder):
flake8_style = get_style_guide(config_file=DEFAULT_CONFIG)
out, err = StringIO(), StringIO()
with redirected(out, err):
flake8_style.check_files(py_files)
Without the redirection, I see that flake8 is correctly detecting errors in files.
With the redirection it appears that nothing is actually written to the StringIO objects.
Requires some investigation.
Metadata
Metadata
Assignees
Labels
No labels