diff --git a/src/tests/gate-basic-bionic-train b/src/tests/gate-basic-bionic-train new file mode 100755 index 0000000..ccf6f3a --- /dev/null +++ b/src/tests/gate-basic-bionic-train @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +"""Amulet tests on a basic tempest deployment on bionic-train.""" + +from basic_deployment import TempestBasicDeployment + +if __name__ == '__main__': + # Tempest is installed through pip so cloud archive is not needed here + deployment = TempestBasicDeployment(series='bionic', + openstack='cloud:bionic-train', + source='cloud:bionic-train') + deployment.run_tests() diff --git a/src/tox.ini b/src/tox.ini index 8a91d50..dd17ae5 100644 --- a/src/tox.ini +++ b/src/tox.ini @@ -43,7 +43,7 @@ commands = # Run a specific test as an Amulet smoke test (expected to always pass) basepython = python2.7 commands = - bundletester -vl DEBUG -r json -o func-results.json gate-basic-bionic-stein --no-destroy + bundletester -vl DEBUG -r json -o func-results.json gate-basic-bionic-train --no-destroy [testenv:func-dev] # Run all development test targets which are +x (may not always pass!)