2015-04-10 14:22:04 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
"""Amulet tests on a basic quantum-gateway git deployment on trusty-juno."""
|
|
|
|
|
2015-06-25 17:58:14 +00:00
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
2015-04-10 14:22:04 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-06-25 17:58:14 +00:00
|
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty',
|
2015-04-10 14:22:04 +00:00
|
|
|
openstack='cloud:trusty-juno',
|
|
|
|
source='cloud:trusty-updates/juno',
|
|
|
|
git=True)
|
|
|
|
deployment.run_tests()
|