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
434 B
Python
Executable File
12 lines
434 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on precise-icehouse."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='precise',
|
|
openstack='cloud:precise-icehouse',
|
|
source='cloud:precise-updates/icehouse')
|
|
deployment.run_tests()
|