bambi/backends/base.py
Killed 0 out of 3 mutantsSurvived
Survived mutation testing. These mutants show holes in your test suite.Mutant 550
--- bambi/backends/base.py
+++ bambi/backends/base.py
@@ -4,7 +4,7 @@
class BackEnd:
"""Base class for BackEnd hierarchy."""
- __metaclass__ = ABCMeta
+ __metaclass__ = None
@abstractmethod
def build(self):
Mutant 551
--- bambi/backends/base.py
+++ bambi/backends/base.py
@@ -6,7 +6,6 @@
__metaclass__ = ABCMeta
- @abstractmethod
def build(self):
pass
Mutant 552
--- bambi/backends/base.py
+++ bambi/backends/base.py
@@ -10,7 +10,6 @@
def build(self):
pass
- @abstractmethod
def run(self):
pass