From 141554bd3da78b62dbeeeec3116a9751ba8f0a6e Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Tue, 26 Jan 2021 16:21:46 -0300
Subject: [PATCH] upstream CI: Explicitly install Ansible.

Without explicit installation, Ansible was failing to run on
Azure pipelines. This change explicitly install the latest
Ansible version available through `pip`.
---
 tests/azure/templates/build_container.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/azure/templates/build_container.yml b/tests/azure/templates/build_container.yml
index 8649a336..0bd49321 100644
--- a/tests/azure/templates/build_container.yml
+++ b/tests/azure/templates/build_container.yml
@@ -15,7 +15,7 @@ jobs:
     inputs:
       versionSpec: '3.6'
 
-  - script: python -m pip install --upgrade pip setuptools wheel
+  - script: python -m pip install --upgrade pip setuptools wheel ansible
     displayName: Install tools
 
   - script: pip install molecule[docker]
-- 
GitLab