aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjvoisin <julien.voisin@dustri.org>2020-11-13 17:27:23 +0100
committerjvoisin <julien.voisin@dustri.org>2020-11-13 17:27:23 +0100
commit148bcbba52b64d347e86b5f1eddf1d834c7288fa (patch)
treea9805fa036a8d995d7a3f1cb0e8f16aaf5d3a725
parentb3def8b5de82dea90bdf65bc7b558d567a383a3a (diff)
downloadexternal_mat2-148bcbba52b64d347e86b5f1eddf1d834c7288fa.tar.gz
external_mat2-148bcbba52b64d347e86b5f1eddf1d834c7288fa.tar.bz2
external_mat2-148bcbba52b64d347e86b5f1eddf1d834c7288fa.zip
Bump coverage
-rw-r--r--libmat2/office.py6
-rw-r--r--libmat2/pdf.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/libmat2/office.py b/libmat2/office.py
index 124f864..5e4524d 100644
--- a/libmat2/office.py
+++ b/libmat2/office.py
@@ -147,7 +147,7 @@ class MSOfficeParser(ZipParser):
except ET.ParseError:
return False
for c in tree:
- if 'PartName' not in c.attrib or 'ContentType' not in c.attrib:
+ if 'PartName' not in c.attrib or 'ContentType' not in c.attrib: # pragma: no cover
continue
elif c.attrib['ContentType'] in self.content_types_to_keep:
fname = c.attrib['PartName'][1:] # remove leading `/`
@@ -270,7 +270,7 @@ class MSOfficeParser(ZipParser):
logging.error("Unable to parse %s: %s", full_path, e)
return False
- if len(namespace.items()) != 1:
+ if len(namespace.items()) != 1: # pragma: no cover
logging.debug("Got several namespaces for Types: %s", namespace.items())
removed_fnames = set()
@@ -361,7 +361,7 @@ class MSOfficeParser(ZipParser):
if full_path.endswith('/[Content_Types].xml'):
# this file contains references to files that we might
# remove, and MS Office doesn't like dangling references
- if self.__remove_content_type_members(full_path) is False:
+ if self.__remove_content_type_members(full_path) is False: # pragma: no cover
return False
elif full_path.endswith('/word/document.xml'):
# this file contains the revisions
diff --git a/libmat2/pdf.py b/libmat2/pdf.py
index d2262a6..e258512 100644
--- a/libmat2/pdf.py
+++ b/libmat2/pdf.py
@@ -84,7 +84,7 @@ class PDFParser(abstract.AbstractParser):
for pagenum in range(pages_count):
page = document.get_page(pagenum)
- if page is None:
+ if page is None: # pragma: no cover
logging.error("Unable to get PDF pages")
return False
page_width, page_height = page.get_size()