12 lines
420 B
Python
Executable File
12 lines
420 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic neutron-openvswitch deployment on trusty-juno."""
|
|
|
|
from basic_deployment import NeutronOVSBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronOVSBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-juno',
|
|
source='cloud:trusty-updates/juno')
|
|
deployment.run_tests()
|