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()