mavsdk_tests: map stderr to stdout

That way we don't need to collect it separately.
This commit is contained in:
Julian Oes
2020-05-20 14:23:52 +02:00
parent eba1cf08f8
commit 262341455b

View File

@@ -53,7 +53,7 @@ class Runner:
cwd=self.cwd,
env=self.env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stderr=subprocess.STDOUT,
universal_newlines=True
)