mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-07 17:04:02 -07:00
fixes for tests
This commit is contained in:
parent
5f4bf813b1
commit
2ac4acbf97
3 changed files with 6 additions and 6 deletions
|
@ -54,8 +54,8 @@ class TestCallbacks(object):
|
|||
def on_unreachable(self, host, msg):
|
||||
EVENTS.append([ 'unreachable', [ host, msg ]])
|
||||
|
||||
def on_failed(self, host, results):
|
||||
EVENTS.append([ 'failed', [ host, results ]])
|
||||
def on_failed(self, host, results, ignore_errors):
|
||||
EVENTS.append([ 'failed', [ host, results, ignore_errors ]])
|
||||
|
||||
def on_ok(self, host, result):
|
||||
# delete certain info from host_result to make test comparisons easier
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue