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
12 lines
418 B
Python
Executable File
12 lines
418 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic quantum-gateway 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')
|
|
deployment.run_tests()
|