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: I7ff0b0a66150ee895f7117db92f6123ec25e5b10
This commit is contained in:
Ryan Beisner 2017-12-05 05:28:51 +00:00
parent 5aa4a19e9d
commit e15bb3ecb8
3 changed files with 13 additions and 3 deletions

View File

@ -12,8 +12,8 @@ tags:
- openstack
series:
- xenial
- bionic
- artful
- zesty
subordinate: false
requires:
shared-db:

View File

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

View File

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