c72c0bf75a
- Sync charm helpers if applicable. - Fix test executable hashbangs for virtualenv prep. - Add Yakkety-Newton Amulet test definitions. - Prep Xenial-Ocata Amulet test definitions (not yet enabled). - Prep Zesty-Ocata Amulet test definitions (not yet enabled). - Remove Precise charm series metadata if present. - Remove Precise Amulet test definitions if present. Change-Id: Iebca0e30342d35e9c2344d9f1f527ca9c64129d0
10 lines
279 B
Python
Executable File
10 lines
279 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on trusty-icehouse."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='trusty')
|
|
deployment.run_tests()
|