Drop explicit install of python-ceph; ceph-common has an
appropriate dependency on the required python{3}-ceph package
so this is not required, and breaks on Stein where Python 2
packages are no longer provided.
Closes-Bug: 1824154
Change-Id: Ia219258f73f038170bc5a070d562e499459fe246
10 lines
243 B
Python
Executable File
10 lines
243 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic ceph deployment on disco-stein."""
|
|
|
|
from basic_deployment import CephBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CephBasicDeployment(series='disco')
|
|
deployment.run_tests()
|