We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ae58c commit 54a12faCopy full SHA for 54a12fa
tests/testsuite.py
@@ -27,7 +27,7 @@ def _load_schema():
27
schema_doc = etree.parse(schema_file)
28
schema = etree.XMLSchema(schema_doc)
29
return schema
30
- raise RuntimeError('Could not load JUnit schema')
+ raise RuntimeError('Could not load JUnit schema') # pragma: no cover
31
32
33
JUnitSchema = _load_schema()
@@ -126,8 +126,6 @@ def __call__(self, result):
126
except Exception:
127
result.addError(self, sys.exc_info())
128
return
129
- super(XMLTestRunnerTestCase.DummyErrorInCallTest, self)\
130
- .__call__(result)
131
132
def test_pass(self):
133
# it is expected not to be called.
0 commit comments