a7c5e85c40
Change-Id: I0c386fc0c052cc1ac52c0a30f7a39fa914a61100
10 lines
242 B
Python
Executable File
10 lines
242 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic ceph deployment on xenial-mitaka."""
|
|
|
|
from basic_deployment import CephBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephBasicDeployment(series='xenial')
|
|
deployment.run_tests()
|