b4a0014ab5
Mitaka testing was disable while agent package renames where handled; re-enable now that work is complete. Change-Id: Ie5872a3aee660fa63fe041ee8466f2257b85ede8
12 lines
424 B
Python
Executable File
12 lines
424 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on trusty-mitaka."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-mitaka',
|
|
source='cloud:trusty-updates/mitaka')
|
|
deployment.run_tests()
|