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 17.02.

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

Change-Id: I5eb488a02184af6f422f6f7c14217c39ea0b5f84
This commit is contained in:
Ryan Beisner 2017-12-05 05:24:09 +00:00
parent 02c6d5f976
commit 85a0c5619f
4 changed files with 23 additions and 11 deletions

View File

@ -11,8 +11,8 @@ series:
# Trusty disabled pending https://bugs.launchpad.net/bugs/1609498
# - trusty
- xenial
- bionic
- artful
- zesty
subordinate: false
requires:
shared-db:

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic barbican deployment on bionic-queens for keystone v2.
"""
from basic_deployment import BarbicanBasicDeployment
if __name__ == '__main__':
deployment = BarbicanBasicDeployment(series='bionic', keystone_version=2)
deployment.run_tests()

View File

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

View File

@ -1,10 +0,0 @@
#!/usr/bin/env python
"""Amulet tests on a basic barbican deployment on zesty-ocata for keystone v2.
"""
from basic_deployment import BarbicanBasicDeployment
if __name__ == '__main__':
deployment = BarbicanBasicDeployment(series='zesty', keystone_version=2)
deployment.run_tests()