1a2c2c74a4
- Add Zesty as a supported series to metadata.yaml. - Turn on Xenial-Ocata Amulet test definitions. - Sync charm helpers to get Juju 2.x amulet compatibility. - Keeping Zesty-Ocata Amulet test definitions turned off until the metadata.yaml changes propagate to the charm store. - Resync tox.ini to resolve amulet test failures. - Update tests for ocata changes. Change-Id: Iea2ee8a6a482c2eb12d695123a908ee4402722df
12 lines
425 B
Python
Executable File
12 lines
425 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on xenial-ocata."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='xenial',
|
|
openstack='cloud:xenial-ocata',
|
|
source='cloud:xenial-updates/ocata')
|
|
deployment.run_tests()
|