auto add amulet tests for supported releases
This commit is contained in:
parent
dfb1173124
commit
69e0da2621
11
tests/016-basic-trusty-juno
Executable file
11
tests/016-basic-trusty-juno
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
"""Amulet tests on a basic ceph-radosgw deployment on trusty-juno."""
|
||||||
|
|
||||||
|
from basic_deployment import CephRadosGwBasicDeployment
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
deployment = CephRadosGwBasicDeployment(series='trusty',
|
||||||
|
openstack='cloud:trusty-juno',
|
||||||
|
source='cloud:trusty-updates/juno')
|
||||||
|
deployment.run_tests()
|
11
tests/017-basic-trusty-kilo
Executable file
11
tests/017-basic-trusty-kilo
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
"""Amulet tests on a basic ceph-radosgw deployment on trusty-kilo."""
|
||||||
|
|
||||||
|
from basic_deployment import CephRadosGwBasicDeployment
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
deployment = CephRadosGwBasicDeployment(series='trusty',
|
||||||
|
openstack='cloud:trusty-kilo',
|
||||||
|
source='cloud:trusty-updates/kilo')
|
||||||
|
deployment.run_tests()
|
9
tests/018-basic-utopic-juno
Executable file
9
tests/018-basic-utopic-juno
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
"""Amulet tests on a basic ceph-radosgw deployment on utopic-juno."""
|
||||||
|
|
||||||
|
from basic_deployment import CephRadosGwBasicDeployment
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
deployment = CephRadosGwBasicDeployment(series='utopic')
|
||||||
|
deployment.run_tests()
|
9
tests/019-basic-vivid-kilo
Executable file
9
tests/019-basic-vivid-kilo
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
"""Amulet tests on a basic ceph-radosgw deployment on vivid-kilo."""
|
||||||
|
|
||||||
|
from basic_deployment import CephRadosGwBasicDeployment
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
deployment = CephRadosGwBasicDeployment(series='vivid')
|
||||||
|
deployment.run_tests()
|
Loading…
Reference in New Issue
Block a user