c856c36839
The bundle disco-stein was in the dev bundles because a bug with the Python 3.7 syntax prevented the success of the deployment of HA clusters. This bug is fixed, we can reintegrate disco-stein in the gate bundles. Other small additions: - removing sitepackages in tox.ini to avoid test env pollution - skip_missing_interpreters in tox.ini set to False to avoid false positives by skipping missing interpreters. LP Related-Bug: #1823718 Change-Id: I268df41f6f775560580b49fa60f717ba8da88def
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 disco-stein."""
|
|
|
|
from basic_deployment import NeutronGatewayBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = NeutronGatewayBasicDeployment(series='disco')
|
|
deployment.run_tests()
|