We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59678ad commit ed1cf97Copy full SHA for ed1cf97
devops/scripts/benchmarks/tests/test_integration.py
@@ -93,8 +93,14 @@ def run_main(self, *args):
93
],
94
capture_output=True,
95
)
96
- print("MAIN_PY_STDOUT:\n" + proc.stdout.decode() if proc.stdout else "<empty>")
97
- print("MAIN_PY_STDERR:\n" + proc.stderr.decode() if proc.stderr else "<empty>")
+ print(
+ "MAIN_PY_STDOUT:",
98
+ "\n" + proc.stdout.decode() if proc.stdout else " <empty>",
99
+ )
100
101
+ "MAIN_PY_STDERR:",
102
+ "\n" + proc.stderr.decode() if proc.stderr else " <empty>",
103
104
return proc.returncode
105
106
def get_output(self):
0 commit comments