8d000ac1ce
The tests/021-basic-xenial-mitaka amulet test was present but not enabled. This test now passes and can be enabled Change-Id: I4eb0649d41672fd71fc2eab9d9aea050670d24cf
10 lines
269 B
Python
Executable File
10 lines
269 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic neutron-openvswitch deployment on xenial-mitaka."""
|
|
|
|
from basic_deployment import NeutronOVSBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronOVSBasicDeployment(series='xenial')
|
|
deployment.run_tests()
|