From 72886ecd7a20e66ccadcd212af6b625b5236003e Mon Sep 17 00:00:00 2001 From: Nicolay Rusnachenko Date: Sat, 13 Jan 2024 12:26:10 +0000 Subject: [PATCH] #131 clarified. --- test/test_document_parsing_benchmark.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_document_parsing_benchmark.py b/test/test_document_parsing_benchmark.py index 3a9f846..11d4278 100644 --- a/test/test_document_parsing_benchmark.py +++ b/test/test_document_parsing_benchmark.py @@ -52,7 +52,8 @@ def test(self): pd = DocumentParsers.parse_batch(doc=doc_provider.by_id(0), pipeline_items=text_parser_pipeline, parent_ppl_ctx=PipelineContext(d={IDLE_MODE: None}), - batch_size=16) + batch_size=16, + show_progress=True) for s in pd: assert(isinstance(s, BaseParsedText))