1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/python """Amulet tests on a basic neutron-api deployment on trusty-liberty.""" from basic_deployment import NeutronAPIBasicDeployment if __name__ == '__main__': deployment = NeutronAPIBasicDeployment(series='trusty', openstack='cloud:trusty-liberty', source='cloud:trusty-updates/liberty') deployment.run_tests() |