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()
|