From ac72fd9d2c6dcc4017cf69605964cf18658c3188 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 5 May 2017 18:37:11 +0800 Subject: [PATCH] Add missing return statements. --- test/runner/lib/core_ci.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runner/lib/core_ci.py b/test/runner/lib/core_ci.py index 5dd7580ba9..a10e7a4d4b 100644 --- a/test/runner/lib/core_ci.py +++ b/test/runner/lib/core_ci.py @@ -129,9 +129,9 @@ class AnsibleCoreCI(object): def start(self): """Start instance.""" if is_shippable(): - self.start_shippable() - else: - self.start_remote() + return self.start_shippable() + + return self.start_remote() def start_remote(self): """Start instance for remote development/testing."""