add liberty amulet test targets (disabled pending liberty pkgs)

This commit is contained in:
Ryan Beisner
2015-08-21 15:19:03 +00:00
parent ecee5ba49e
commit 3468196e9b
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/python
"""Amulet tests on a basic swift-storage deployment on trusty-liberty."""
from basic_deployment import SwiftStorageBasicDeployment
if __name__ == '__main__':
deployment = SwiftStorageBasicDeployment(series='trusty',
openstack='cloud:trusty-liberty',
source='cloud:trusty-updates/liberty')
deployment.run_tests()

View File

@@ -0,0 +1,9 @@
#!/usr/bin/python
"""Amulet tests on a basic swift-storage deployment on wily-liberty."""
from basic_deployment import SwiftStorageBasicDeployment
if __name__ == '__main__':
deployment = SwiftStorageBasicDeployment(series='wily')
deployment.run_tests()