10 lines
245 B
Python
Executable File
10 lines
245 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic ceph deployment on cosmic-rocky."""
|
|
|
|
from basic_deployment import CephBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephBasicDeployment(series='cosmic')
|
|
deployment.run_tests()
|