Don't raise errors from coverage post-processing.

pull/37/head
Thomas Kluyver 14 years ago
parent 93a8b9d215
commit 4b51bacbb2

@ -333,7 +333,7 @@ class IPTester(object):
return 1 # signal failure
if self.coverage_xml:
subprocess.check_call(["coverage", "xml", "-o", self.coverage_xml])
subprocess.call(["coverage", "xml", "-o", self.coverage_xml])
return retcode
def __del__(self):

Loading…
Cancel
Save