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: Ia0ea3d0ce22856c9a705417f258b6d0484bb0882
This commit is contained in:
Ryan Beisner 2017-12-05 05:27:19 +00:00
parent 0ab6229b0f
commit f9c40c41ee
3 changed files with 14 additions and 3 deletions

View File

@ -11,8 +11,8 @@ tags:
- misc
series:
- xenial
- bionic
- artful
- zesty
- trusty
extra-bindings:
public:

View File

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

11
tests/dev-basic-xenial-queens Executable file
View File

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