Update amulet test definitions

Change-Id: Iacd3ad7f0aa02b59288c045817672fcb387e6da4
This commit is contained in:
Ryan Beisner 2017-09-28 03:52:49 +00:00
parent 8831b2ab4f
commit 9045d49642
2 changed files with 20 additions and 0 deletions

9
tests/gate-basic-artful-pike Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
"""Amulet tests on a basic ceph deployment on artful-pike."""
from basic_deployment import CephBasicDeployment
if __name__ == '__main__':
deployment = CephBasicDeployment(series='artful')
deployment.run_tests()

11
tests/gate-basic-xenial-pike Executable file
View File

@ -0,0 +1,11 @@
#!/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()