Browse Source

mavsdk_tests: map stderr to stdout

That way we don't need to collect it separately.
sbg
Julian Oes 5 years ago
parent
commit
262341455b
  1. 2
      test/mavsdk_tests/process_helper.py

2
test/mavsdk_tests/process_helper.py

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

Loading…
Cancel
Save