6202362477
add basic functional checks sync tests/charmhelpers
12 lines
403 B
Python
Executable File
12 lines
403 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic ceph-radosgw deployment on trusty-kilo."""
|
|
|
|
from basic_deployment import CephRadosGwBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephRadosGwBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-kilo',
|
|
source='cloud:trusty-updates/kilo')
|
|
deployment.run_tests()
|