Skip to content
Snippets Groups Projects
Commit 0f48a88c authored by Christian Boettcher's avatar Christian Boettcher
Browse files

exclude abstract classes from test coverage

parent 550c36a2
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ class Secret(BaseModel):
secret: str = None
class AbstractDBInterface(metaclass=abc.ABCMeta):
class AbstractDBInterface(metaclass=abc.ABCMeta): # pragma: no cover
@abc.abstractclassmethod
def list(self) -> List:
raise NotImplementedError()
......
......@@ -17,7 +17,7 @@ class LocationData(BaseModel):
metadata: Optional[Dict[str, str]]
class AbstractLocationDataStorageAdapter:
class AbstractLocationDataStorageAdapter: # pragma: no cover
"""
This is an abstract storage adapter for storing information about datasets,
storage targets and similar things. It can easily be expanded to also store
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment