34fbfcfb08
Switch to using bundletester for execution of functional tests, leveraging tox to build out test virtualenvs. Rename amulet tests inline with gate-* and dfs-* naming standards. Update README to refer to functional testing section of the charm guide. Change-Id: I9b36f8a6375da5cf5807d51e1d009c47d74dc1dd
13 lines
493 B
Python
Executable File
13 lines
493 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic neutron-gateway git deployment on trusty-kilo."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-kilo',
|
|
source='cloud:trusty-updates/kilo',
|
|
git=True)
|
|
deployment.run_tests()
|