From 9b7d7d6a02ba8947d5bbd7f8b8fcd7fd45823145 Mon Sep 17 00:00:00 2001 From: Frode Nordahl Date: Wed, 3 Apr 2019 11:58:51 +0200 Subject: [PATCH] Enable cosmic gate test and disco dev test Pending LP: #1823718 to enable disco gate test Change-Id: I7fcd92968252499a25a2e4a85b049f15ab24587b --- tests/dev-basic-disco | 8 ++++++++ tests/gate-basic-cosmic | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100755 tests/dev-basic-disco create mode 100755 tests/gate-basic-cosmic diff --git a/tests/dev-basic-disco b/tests/dev-basic-disco new file mode 100755 index 0000000..11e4652 --- /dev/null +++ b/tests/dev-basic-disco @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +import basic_deployment + + +if __name__ == "__main__": + t = basic_deployment.BasicDeployment(units=3, series='disco') + t.run() diff --git a/tests/gate-basic-cosmic b/tests/gate-basic-cosmic new file mode 100755 index 0000000..1ec326c --- /dev/null +++ b/tests/gate-basic-cosmic @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +import basic_deployment + + +if __name__ == "__main__": + t = basic_deployment.BasicDeployment(units=3, series='cosmic') + t.run()