We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc5aa62 commit a1e7fa2Copy full SHA for a1e7fa2
tests/run.yml
@@ -202,8 +202,11 @@
202
203
- name: install kolla-ansible and dependencies
204
vars:
205
+ ansible_version_min: "==2.9.*"
206
+ ansible_version_max: "==2.10.*"
207
# Test latest ansible version on Ubuntu, minimum supported on others.
- ansible_version_constraint: "{{ '==2.9.*' if is_upgrade else '==2.10.*' }}"
208
+ ansible_version_constraint: >-
209
+ {{ ansible_version_min if is_upgrade or base_distro != 'ubuntu' else ansible_version_max }}
210
command: >-
211
python3 -m pip install --user
212
-c {{ upper_constraints_file }}
0 commit comments