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: I6a2a7135e802ccb373e9e11363e66cfa12027c24
This commit is contained in:
parent
eefb27a582
commit
a4dbba98fb
@ -17,8 +17,8 @@ tags:
|
||||
- openstack
|
||||
series:
|
||||
- xenial
|
||||
- bionic
|
||||
- artful
|
||||
- zesty
|
||||
- trusty
|
||||
extra-bindings:
|
||||
data:
|
||||
|
9
tests/dev-basic-bionic-queens
Executable file
9
tests/dev-basic-bionic-queens
Executable file
@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""Amulet tests on a basic quantum-gateway deployment on bionic-queens."""
|
||||
|
||||
from basic_deployment import NeutronGatewayBasicDeployment
|
||||
|
||||
if __name__ == '__main__':
|
||||
deployment = NeutronGatewayBasicDeployment(series='bionic')
|
||||
deployment.run_tests()
|
11
tests/dev-basic-xenial-queens
Executable file
11
tests/dev-basic-xenial-queens
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""Amulet tests on a basic quantum-gateway deployment on xenial-queens."""
|
||||
|
||||
from basic_deployment import NeutronGatewayBasicDeployment
|
||||
|
||||
if __name__ == '__main__':
|
||||
deployment = NeutronGatewayBasicDeployment(series='xenial',
|
||||
openstack='cloud:xenial-queens',
|
||||
source='cloud:xenial-updates/queens')
|
||||
deployment.run_tests()
|
@ -1,9 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""Amulet tests on a basic quantum-gateway deployment on zesty-ocata."""
|
||||
|
||||
from basic_deployment import NeutronGatewayBasicDeployment
|
||||
|
||||
if __name__ == '__main__':
|
||||
deployment = NeutronGatewayBasicDeployment(series='zesty')
|
||||
deployment.run_tests()
|
Loading…
Reference in New Issue
Block a user