Commit fa6d4c9a authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

wip

parent 98e36b4a
......@@ -214,7 +214,8 @@ class ResiliencyTestSuite(object):
if 'monitor' in promise:
continue
try:
process = subprocess.check_output(os.path.join(promise_directory, promise))
process = subprocess.check_output(os.path.join(promise_directory, promise),
stderr=subprocess.STDOUT, shell=True)
except subprocess.CalledProcessError as e:
self.logger.error('ERROR : promise "%s" failed with output :\n%s', promise, e.output)
return False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment