
- Turn on Zesty-Ocata Amulet test definitions. - Standardize test-requirements.txt - Sync charm helpers for various fixes Change-Id: I0368b786984f120d9b79292aea2524099a68105e
10 lines
274 B
Python
Executable File
10 lines
274 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""Amulet tests on a basic quantum-gateway deployment on zesty-ocata."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='zesty')
|
|
deployment.run_tests()
|