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: I114f274e9a959d5308422fa5678605beee2e7464
This commit is contained in:
Ryan Beisner 2017-12-05 05:30:30 +00:00
parent 15668b9859
commit 083e2442af
3 changed files with 15 additions and 3 deletions

View File

@ -10,8 +10,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 tempest deployment on zesty-ocata."""
"""Amulet tests on a basic tempest deployment on bionic-queens."""
from basic_deployment import TempestBasicDeployment
if __name__ == '__main__':
deployment = TempestBasicDeployment(series='zesty')
deployment = TempestBasicDeployment(series='bionic')
deployment.run_tests()

View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
"""Amulet tests on a basic tempest deployment on xenial-queens."""
from basic_deployment import TempestBasicDeployment
if __name__ == '__main__':
# Tempest is installed through pip so cloud archive is not needed here
deployment = TempestBasicDeployment(series='xenial',
openstack='cloud:xenial-queens',
source='cloud:xenial-updates/queens')
deployment.run_tests()