From 700d2b7335a46455be0151ef93087a5f74edf233 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Fri, 26 Nov 2021 10:17:18 -0300 Subject: [PATCH] upstrem CI: Fix Ansible version in pytest playbooks. When using group_tests, the pytest playbook was not receiving the Ansible version to use, executing always with the latest available version. This patch fixes the behavior by passing the Ansible version to use for tests to pytest_tests playbook. --- tests/azure/templates/group_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/azure/templates/group_tests.yml b/tests/azure/templates/group_tests.yml index 356a6c81..5fe0c7a2 100644 --- a/tests/azure/templates/group_tests.yml +++ b/tests/azure/templates/group_tests.yml @@ -38,3 +38,4 @@ jobs: parameters: build_number: ${{ parameters.build_number }} scenario: ${{ parameters.scenario }} + ansible_version: ${{ parameters.ansible_version }} -- GitLab