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`.
This commit is contained in:
Rafael Guterres Jeffman
2021-01-26 16:21:46 -03:00
parent dff921039d
commit 141554bd3d

View File

@@ -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]