From: Chen Qi Date: Fri, 1 Jun 2018 05:03:00 +0000 (+0800) Subject: oeqa/core/decorator/__init__.py: set metaclass to ABCMeta X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8c3a8c5d9fb31edbc37d8239c4cf5312a815a344;p=openembedded-core.git oeqa/core/decorator/__init__.py: set metaclass to ABCMeta OETestFilter is a subclass of OETestDecorator. It wants to make use of @abstractmethod decorator. But such decorator requires metaclass to be ABCMeta to have effect. So add it now to achieve the designed behaviour. Comments from python's manual: """ Using this decorator requires that the class's metaclass is ABCMeta or is derived from it. """ (From OE-Core rev: 28c4fafb2322ea8c37bcd7710f22f46ef552a902) Signed-off-by: Chen Qi Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- diff --git a/meta/lib/oeqa/core/decorator/__init__.py b/meta/lib/oeqa/core/decorator/__init__.py index 855b6b9d28..6ca0acf353 100644 --- a/meta/lib/oeqa/core/decorator/__init__.py +++ b/meta/lib/oeqa/core/decorator/__init__.py @@ -2,7 +2,7 @@ # Released under the MIT license (see COPYING.MIT) from functools import wraps -from abc import abstractmethod +from abc import abstractmethod, ABCMeta decoratorClasses = set() @@ -10,7 +10,7 @@ def registerDecorator(obj): decoratorClasses.add(obj) return obj -class OETestDecorator(object): +class OETestDecorator(object, metaclass=ABCMeta): case = None # Reference of OETestCase decorated attrs = None # Attributes to be loaded by decorator implementation