From e6d7cd3aff42142ce2304bae5273222e977017e4 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sat, 31 Oct 2020 23:35:09 -0700 Subject: [PATCH] skip vanilla Ansible 2.10 hanging task if not is_mitogen --- .../integration/runner/custom_python_new_style_module.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/ansible/integration/runner/custom_python_new_style_module.yml b/tests/ansible/integration/runner/custom_python_new_style_module.yml index 0d29d0ac..2ec896b7 100644 --- a/tests/ansible/integration/runner/custom_python_new_style_module.yml +++ b/tests/ansible/integration/runner/custom_python_new_style_module.yml @@ -2,6 +2,10 @@ hosts: test-targets any_errors_fatal: true tasks: + # without Mitogen Ansible 2.10 hangs on this play + - meta: end_play + when: not is_mitogen + - custom_python_new_style_module: foo: true with_sequence: start=0 end={{end|default(1)}}