@@ -625,7 +625,7 @@ def test_ansible_env_config(
625625 # Keep it here just to be more explicit and due to the fact that here
626626 # the os.environ is mock.
627627 expected_env = {"MELAMPO" : "cane" }
628- expected_env ["ANSIBLE_PIPELINING" ] = "True "
628+ expected_env ["ANSIBLE_PIPELINING" ] = "False "
629629 expected_env ["ANSIBLE_TIMEOUT" ] = "20"
630630 for playbook in playbook_files_list :
631631 calls .append (mock_call_ansibleplaybook (inventory , playbook , env = expected_env ))
@@ -671,8 +671,12 @@ def test_ansible_profile(
671671 playbook_files_list = create_playbooks (playbooks ["create" ])
672672 calls = []
673673 expected_env = {"MELAMPO" : "cane" }
674+ < << << << HEAD
674675 expected_env ["ANSIBLE_PIPELINING" ] = "True"
675676 expected_env ["ANSIBLE_TIMEOUT" ] = "20"
677+ == == == =
678+ expected_env ["ANSIBLE_PIPELINING" ] = "False"
679+ >> >> >> > 94e5754 (Remove pipelining from ansible .cfg )
676680 expected_env ["ANSIBLE_CALLBACKS_ENABLED" ] = "ansible.posix.profile_tasks"
677681 for playbook in playbook_files_list :
678682 calls .append (mock_call_ansibleplaybook (inventory , playbook , env = expected_env ))
@@ -721,8 +725,12 @@ def test_ansible_junit(
721725 playbook_files_list = create_playbooks (playbooks ["create" ])
722726 calls = []
723727 expected_env = {"MELAMPO" : "cane" }
728+ < << << << HEAD
724729 expected_env ["ANSIBLE_PIPELINING" ] = "True"
725730 expected_env ["ANSIBLE_TIMEOUT" ] = "20"
731+ == == == =
732+ expected_env ["ANSIBLE_PIPELINING" ] = "False"
733+ >> >> >> > 94e5754 (Remove pipelining from ansible .cfg )
726734 expected_env ["ANSIBLE_CALLBACKS_ENABLED" ] = "junit"
727735 expected_env ["JUNIT_OUTPUT_DIR" ] = "/something/somewhere"
728736 for playbook in playbook_files_list :
@@ -777,8 +785,12 @@ def test_ansible_env_roles_path(
777785 playbook_files_list = create_playbooks (["get_cherry_wood" ])
778786 calls = []
779787 expected_env = dict (os .environ )
788+ < << << << HEAD
780789 expected_env ["ANSIBLE_PIPELINING" ] = "True"
781790 expected_env ["ANSIBLE_TIMEOUT" ] = "20"
791+ == == == =
792+ expected_env ["ANSIBLE_PIPELINING" ] = "False"
793+ >> >> >> > 94e5754 (Remove pipelining from ansible .cfg )
782794 expected_env ["ANSIBLE_ROLES_PATH" ] = "somewhere"
783795 for playbook in playbook_files_list :
784796 calls .append (mock_call_ansibleplaybook (inventory , playbook , env = expected_env ))
0 commit comments