Skip to content

Commit

Permalink
excluded abstract methods from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
moltob committed May 12, 2019
1 parent 9753c40 commit 2abf365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doit/cmd_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def load_doit_config(self):
:return: (dict) Dictionary of doit configuration values.
"""
raise NotImplementedError()
raise NotImplementedError() # pragma: no cover

def load_tasks(self, cmd, pos_args):
"""Load tasks.
Expand All @@ -352,7 +352,7 @@ def load_tasks(self, cmd, pos_args):
:param pos_args: (list str) positional arguments from command line
:return: (List[Task])
"""
raise NotImplementedError()
raise NotImplementedError() # pragma: no cover


class NamespaceTaskLoader(TaskLoader2):
Expand Down

0 comments on commit 2abf365

Please sign in to comment.