Commit a14fbe4c by Calen Pennington

Clean up coverage counting a little bit

parent f9c78e07
...@@ -5,6 +5,9 @@ source = common/lib/xmodule ...@@ -5,6 +5,9 @@ source = common/lib/xmodule
[report] [report]
ignore_errors = True ignore_errors = True
exclude_lines =
pragma: no cover
raise NotImplementedError
[html] [html]
title = XModule Python Test Coverage Report title = XModule Python Test Coverage Report
......
...@@ -69,9 +69,6 @@ class ModuleStoreDraftAndPublished(BranchSettingMixin): ...@@ -69,9 +69,6 @@ class ModuleStoreDraftAndPublished(BranchSettingMixin):
""" """
__metaclass__ = ABCMeta __metaclass__ = ABCMeta
def __init__(self, *args, **kwargs):
super(ModuleStoreDraftAndPublished, self).__init__(*args, **kwargs)
@abstractmethod @abstractmethod
def delete_item(self, location, user_id, revision=None, **kwargs): def delete_item(self, location, user_id, revision=None, **kwargs):
raise NotImplementedError raise NotImplementedError
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment