mergin and solving pytests

This commit is contained in:
Alejandro Moreo Fernandez 2025-10-06 12:13:10 +02:00
parent 3847db3838
commit 2883cc8fa6
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ class HierarchyTestCase(unittest.TestCase):
quantifiers = [cls for cls in classes if issubclass(cls, BaseQuantifier)]
quantifiers = [cls for cls in quantifiers if issubclass(cls, AggregativeQuantifier)]
quantifiers = [cls for cls in quantifiers if not inspect.isabstract(cls) ]
quantifiers = [cls for cls in quantifiers if cls is not OneVsAllAggregative]
for cls in quantifiers:
self.assertIn(cls, AGGREGATIVE_METHODS)