There was an error while loading. Please reload this page.
1 parent f463dc2 commit be243d0Copy full SHA for be243d0
1 file changed
tests/textcode/test_pdf.py
@@ -9,6 +9,8 @@
9
10
import os
11
12
+import pytest
13
+
14
from commoncode.testcase import FileBasedTesting
15
from textcode import pdf
16
from textcode.analysis import numbered_text_lines
@@ -83,6 +85,7 @@ def test_pdfminer_can_parse_apache_fop_test_pdf(self):
83
85
for expected in apache_fop_expected:
84
86
assert expected in result
87
88
+ @pytest.mark.xfail(reason='Latest pdfminer.six from 2022 has a regression')
89
def test_numbered_text_lines_does_not_fail_on_autocad_test_pdf(self):
90
test_file = self.get_test_loc('pdf/AutoCad_Diagram.pdf')
91
result = list(numbered_text_lines(test_file))
0 commit comments