9045d49642
Change-Id: Iacd3ad7f0aa02b59288c045817672fcb387e6da4
12 lines
385 B
Python
Executable File
12 lines
385 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic ceph deployment on xenial-pike."""
|
|
|
|
from basic_deployment import CephBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephBasicDeployment(series='xenial',
|
|
openstack='cloud:xenial-pike',
|
|
source='cloud:xenial-updates/pike')
|
|
deployment.run_tests()
|