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