12 lines
387 B
Python
12 lines
387 B
Python
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic heat deployment on trusty-mitaka."""
|
|
|
|
from basic_deployment import HeatBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = HeatBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-mitaka',
|
|
source='cloud:trusty-updates/mitaka')
|
|
deployment.run_tests()
|