From da0abb9679cb1fd639859a2fdbd82101d0a81259 Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Mon, 11 Apr 2016 06:55:35 +0000 Subject: oeqa/runexported.py: Fix exported test With the changes introduced to test the eSDK the runexported test failed during the execution. This change fix runexported test in the least invasive way, because of the release cycle. Signed-off-by: Mariano Lopez Signed-off-by: Richard Purdie --- meta/lib/oeqa/oetest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'meta/lib/oeqa/oetest.py') diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index fc1e8b514d..8eb84ed65d 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py @@ -19,7 +19,11 @@ except ImportError: import logging import oeqa.runtime -import oeqa.sdkext +# Exported test doesn't require sdkext +try: + import oeqa.sdkext +except ImportError: + pass from oeqa.utils.decorators import LogResults, gettag, getResults from oeqa.utils import avoid_paths_in_environ -- cgit v1.2.3