From: Aníbal Limón Date: Fri, 26 May 2017 20:37:29 +0000 (-0500) Subject: oeqa/sdk/context.py: Add return to OESDKTestContext.run() method X-Git-Tag: uninative-1.7~720 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c45546b771c3158e66b2df504576d6dc1758ea75;p=openembedded-core.git oeqa/sdk/context.py: Add return to OESDKTestContext.run() method The run() methods of a OETestContext's are expected to return the results. Signed-off-by: Aníbal Limón Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/sdk/context.py b/meta/lib/oeqa/sdk/context.py index 509d2b4ea7..82e4c19bfc 100644 --- a/meta/lib/oeqa/sdk/context.py +++ b/meta/lib/oeqa/sdk/context.py @@ -128,6 +128,6 @@ class OESDKTestContextExecutor(OETestContextExecutor): "environment (%s) specified" % args.sdk_env, self.name) self.sdk_env = sdk_envs[args.sdk_env] - super(OESDKTestContextExecutor, self).run(logger, args) + return super(OESDKTestContextExecutor, self).run(logger, args) _executor_class = OESDKTestContextExecutor