Test bundles for focal-wallaby and hirsute-wallaby

These are the test bundles (and any associated changes) for
focal-wallaby and hirsute-wallaby support.

Change-Id: Iee6bcc03bb7ecce8735cbbe17c9cda33764e5664
Co-authored-by: Aurelien Lourot <aurelien.lourot@canonical.com>
This commit is contained in:
Alex Kavanagh 2021-03-03 18:00:52 +00:00 committed by Aurelien Lourot
parent 8c6f2d189d
commit da41b4a0da
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
"""Amulet tests on a basic barbican deploy on focal-wallaby for keystone v3.
"""
from basic_deployment import SoftHSMBasicDeployment
if __name__ == '__main__':
deployment = SoftHSMBasicDeployment(series='focal', keystone_version=3,
openstack='cloud:focal-wallaby',
source='cloud:focal-wallaby')
deployment.run_tests()

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic barbican deploy on hirsute-wallaby for keystone v3.
"""
from basic_deployment import SoftHSMBasicDeployment
if __name__ == '__main__':
deployment = SoftHSMBasicDeployment(series='hirsute', keystone_version=3)
deployment.run_tests()