Add Bionic and remove Zesty series and tests

Bionic, being the next LTS, is important to enable for dev
and test as early as possible ahead of 18.02.

Zesty goes EOL in Jan 2018. The next stable charms release (18.02)
will not provide Zesty series support, as it was an interim
(non-LTS) release.

Change-Id: Iceaeb7ab7053caf6a48e4c41c7eab3bae3780082
This commit is contained in:
Ryan Beisner 2017-12-05 05:26:26 +00:00
parent c381e39afa
commit 07ffac2263
3 changed files with 13 additions and 3 deletions

View File

@ -14,8 +14,8 @@ tags:
- openstack
series:
- xenial
- bionic
- artful
- zesty
- trusty
subordinate: false
requires:

View File

@ -1,10 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic aodh deployment on zesty-ocata."""
"""Amulet tests on a basic aodh deployment on bionic-queens."""
from basic_deployment import AodhBasicDeployment
if __name__ == '__main__':
deployment = AodhBasicDeployment(series='zesty')
deployment = AodhBasicDeployment(series='bionic')
deployment.run_tests()

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic aodh deployment on xenial-queens."""
from basic_deployment import AodhBasicDeployment
if __name__ == '__main__':
deployment = AodhBasicDeployment(series='xenial',
openstack='cloud:xenial-queens')
deployment.run_tests()