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.
2 parents f7e4dd1 + 6658d70 commit ec1d691Copy full SHA for ec1d691
regression/end_to_end/driver.py
@@ -52,7 +52,8 @@ def __enter__(self):
52
return self
53
54
def __exit__(self, exc_type, exc_value, traceback):
55
- print("Failure may relate to command: ", self.cmdline, file=sys.stderr)
+ if exc_value is not None:
56
+ print("Failure may relate to command: ", self.cmdline, file=sys.stderr)
57
58
def quote_pathnames_in_command_line(cmdline):
59
assert isinstance(cmdline, list) and len(cmdline) > 0
0 commit comments