Open
Description
Is there a way to hide all the ouput while using the pattern
option? I've tried this:
class Starter(ProcessStarter):
env = {"PYTHONUNBUFFERED": "1", **os.environ}
pattern = BOOT_MSG
popen_kwargs = {
"stdout": subprocess.DEVNULL,
"stderr": subprocess.STDOUT,
}
but it breaks the pattern check :)