Skip to content

Commit

Permalink
ignore retries keyword in callback tests
Browse files Browse the repository at this point in the history
its value is sometimes present and sometimes not, based on ansible
version
  • Loading branch information
evgeni committed Aug 22, 2023
1 parent 2581555 commit 9cd3093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def drop_incompatible_items(d):
dd = {}
for k, v in d.items():
if k in ['msg', 'start', 'end', 'delta', 'uuid', 'timeout', '_ansible_no_log', 'warn', 'connection',
'extended_allitems', 'loop_control', 'expand_argument_vars']:
'extended_allitems', 'loop_control', 'expand_argument_vars', 'retries']:
continue

if isinstance(v, dict):
Expand Down

0 comments on commit 9cd3093

Please sign in to comment.