From 9045d496420332691a6957dbbd82c2b9022ac300 Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Thu, 28 Sep 2017 03:52:49 +0000 Subject: [PATCH] Update amulet test definitions Change-Id: Iacd3ad7f0aa02b59288c045817672fcb387e6da4 --- tests/gate-basic-artful-pike | 9 +++++++++ tests/gate-basic-xenial-pike | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100755 tests/gate-basic-artful-pike create mode 100755 tests/gate-basic-xenial-pike diff --git a/tests/gate-basic-artful-pike b/tests/gate-basic-artful-pike new file mode 100755 index 0000000..5815e9d --- /dev/null +++ b/tests/gate-basic-artful-pike @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +"""Amulet tests on a basic ceph deployment on artful-pike.""" + +from basic_deployment import CephBasicDeployment + +if __name__ == '__main__': + deployment = CephBasicDeployment(series='artful') + deployment.run_tests() diff --git a/tests/gate-basic-xenial-pike b/tests/gate-basic-xenial-pike new file mode 100755 index 0000000..8f4410f --- /dev/null +++ b/tests/gate-basic-xenial-pike @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +"""Amulet tests on a basic ceph deployment on xenial-pike.""" + +from basic_deployment import CephBasicDeployment + +if __name__ == '__main__': + deployment = CephBasicDeployment(series='xenial', + openstack='cloud:xenial-pike', + source='cloud:xenial-updates/pike') + deployment.run_tests()