Support Ansible 2.9

Ansible has released 2.9 and now Zuul also supports it.

Change-Id: Iabf2d6278ba8d88e17403a4adae5521eb3e7019b
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger
2019-08-06 11:46:33 -04:00
parent db0fd4e57d
commit 15afed554e
210 changed files with 260 additions and 0 deletions

View File

@@ -228,3 +228,7 @@ class TestActionModules27(TestActionModules25):
class TestActionModules28(TestActionModules25):
ansible_version = '2.8'
class TestActionModules29(TestActionModules28):
ansible_version = '2.9'

View File

@@ -191,3 +191,7 @@ class TestZuulJSON28(TestZuulJSON25):
role_path = json_result[0]['plays'][0]['tasks'][1]['role']['path']
self.assertEqual('json-role', os.path.basename(role_path))
class TestZuulJSON29(TestZuulJSON28):
ansible_version = '2.9'

View File

@@ -275,3 +275,7 @@ class TestZuulStream28(TestZuulStream25):
self.assertLogLine(
r'RUN END RESULT_NORMAL: \[untrusted : review.example.com/'
r'org/project/playbooks/command.yaml@master]', text)
class TestZuulStream29(TestZuulStream28):
ansible_version = '2.9'