8a3d1ad2d0
- 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. Change-Id: Ia63b663255f5dc52a2a755e8c309b05ba8662a6a
12 lines
388 B
Python
Executable File
12 lines
388 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic ceph deployment on xenial-ocata."""
|
|
|
|
from basic_deployment import CephBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephBasicDeployment(series='xenial',
|
|
openstack='cloud:xenial-ocata',
|
|
source='cloud:xenial-updates/ocata')
|
|
deployment.run_tests()
|