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 fa30b34 commit faa3e68Copy full SHA for faa3e68
test/functional/test_framework/test_framework.py
@@ -198,10 +198,7 @@ def main(self):
198
self.log.warning("Test Skipped: %s" % e.message)
199
self.success = TestStatus.SKIPPED
200
except subprocess.CalledProcessError as e:
201
- self.log.exception("Called Process failed with '{}'".format(e.output))
202
- self.success = TestStatus.FAILED
203
- except KeyboardInterrupt:
204
- self.log.warning("Exiting after keyboard interrupt")
+ self.log.exception(f"Called Process failed with stdout='{e.stdout}'; stderr='{e.stderr}';")
205
self.success = TestStatus.FAILED
206
except BaseException:
207
self.log.exception("Unexpected exception")
0 commit comments