register an unittest handler for testresults and expose it as variable result. With this even partial results from an interrupted test suite run can be made available
Signed-off-by: Konrad Weihmann <[email protected]> --- meta/lib/oeqa/core/context.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 7d3fa3b84a..84b43a93e1 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa/core/context.py @@ -31,6 +31,9 @@ class OETestContext(object): self._registry = {} self._registry['cases'] = collections.OrderedDict() + self.results = unittest.TestResult() + unittest.registerResult(self.results) + def _read_modules_from_manifest(self, manifest): if not os.path.exists(manifest): raise OEQAMissingManifest("Manifest does not exist on %s" % manifest) -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#144448): https://lists.openembedded.org/g/openembedded-core/message/144448 Mute This Topic: https://lists.openembedded.org/mt/78167031/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
