13 lines
493 B
Python
Executable File
13 lines
493 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic quantum-gateway git deployment on trusty-juno."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-juno',
|
|
source='cloud:trusty-updates/juno',
|
|
git=True)
|
|
deployment.run_tests()
|