charm-tempest/src/tests/gate-basic-xenial-ocata

13 lines
478 B
Python
Executable File

#!/usr/bin/env python
"""Amulet tests on a basic tempest deployment on xenial-ocata."""
from basic_deployment import TempestBasicDeployment
if __name__ == '__main__':
# Tempest is installed through pip so cloud archive is not needed here
deployment = TempestBasicDeployment(series='xenial',
openstack='cloud:xenial-ocata',
source='cloud:xenial-updates/ocata')
deployment.run_tests()