c491835877
Change-Id: Icb249cb96621dd358413ff96f7aacb5ee63d6452
12 lines
417 B
Python
Executable File
12 lines
417 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on bionic-stein."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='bionic',
|
|
openstack='cloud:bionic-stein',
|
|
source='cloud:bionic-stein')
|
|
deployment.run_tests()
|