7fd04bba83
* Fix up amulet tests to use keystone v3 clients. * Remove admin_* and auth_* for Queens l3_agent and metadata config files as they no longer appears to be used. Change-Id: Ib952740b0061f76083307d04a772f613a9ba0002
12 lines
428 B
Python
Executable File
12 lines
428 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on xenial-queens."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='xenial',
|
|
openstack='cloud:xenial-queens',
|
|
source='cloud:xenial-updates/queens')
|
|
deployment.run_tests()
|