File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,11 @@ def send_document(
75
75
("fake.odt" , "application/vnd.oasis.opendocument.text" ),
76
76
# Note(austin) The two inference calls will hang on mac with unsupported hardware error
77
77
# Skip these with SKIP_INFERENCE_TESTS=true make docker-test
78
+ pytest .param (
79
+ "layout-parser-paper.pdf.gz" ,
80
+ "application/gzip" ,
81
+ marks = pytest .mark .skipif (skip_inference_tests , reason = "emulated architecture" ),
82
+ ),
78
83
pytest .param (
79
84
"layout-parser-paper.pdf" ,
80
85
"application/pdf" ,
@@ -94,7 +99,6 @@ def send_document(
94
99
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ,
95
100
),
96
101
("fake-xml.xml" , "text/xml" ),
97
- ("layout-parser-paper.pdf.gz" , "application/gzip" ),
98
102
],
99
103
)
100
104
def test_happy_path (example_filename : str , content_type : str ):
You can’t perform that action at this time.
0 commit comments