skip all failhards if test=True

This commit is contained in:
Thomas S Hatch 2016-09-09 16:09:33 -06:00
parent b586ed75bd
commit e13d61f06a

View File

@ -1807,6 +1807,8 @@ class State(object):
Check if the low data chunk should send a failhard signal
'''
tag = _gen_tag(low)
if self.opts['test']:
return False
if (low.get('failhard', False) or self.opts['failhard']
and tag in running):
if running[tag]['result'] is None: