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
10 lines
289 B
Python
Executable File
10 lines
289 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic quantum-gateway git deployment on trusty-icehouse."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty', git=True)
|
|
deployment.run_tests()
|