From: Mikko Rapeli Date: Wed, 23 Aug 2023 06:10:21 +0000 (+0300) Subject: oeqa selftest context.py: whitespace fix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa selftest context.py: whitespace fix Signed-off-by: Mikko Rapeli --- diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py index f2a5ba792f6..4b332457588 100644 --- a/meta/lib/oeqa/selftest/context.py +++ b/meta/lib/oeqa/selftest/context.py @@ -226,14 +226,14 @@ class OESelftestTestContextExecutor(OETestContextExecutor): machines = [] bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':') - + for path in bbpath: found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf')) if found_machines: for i in found_machines: # eg: '/home//poky/meta-intel/conf/machine/intel-core2-32.conf' machines.append(os.path.splitext(os.path.basename(i))[0]) - + return machines def _get_cases_paths(self, bbpath):