10 lines
252 B
Python
10 lines
252 B
Python
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic ceph-osd deployment on xenial-mitaka."""
|
|
|
|
from basic_deployment import CephOsdBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephOsdBasicDeployment(series='xenial')
|
|
deployment.run_tests()
|