mirror of
https://github.com/ocrmypdf/OCRmyPDF.git
synced 2025-06-26 23:49:59 +00:00
27 lines
690 B
Python
27 lines
690 B
Python
# SPDX-FileCopyrightText: 2023 James R. Barlow
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from ocrmypdf.exceptions import ExitCode
|
|
|
|
from .conftest import is_linux, run_ocrmypdf_api
|
|
|
|
|
|
@pytest.mark.skipif(not is_linux(), reason='semfree plugin only works on Linux')
|
|
def test_semfree(resources, outpdf):
|
|
exitcode = run_ocrmypdf_api(
|
|
resources / 'multipage.pdf',
|
|
outpdf,
|
|
'--skip-text',
|
|
'--skip-big',
|
|
'2',
|
|
'--plugin',
|
|
'ocrmypdf.extra_plugins.semfree',
|
|
'--plugin',
|
|
'tests/plugins/tesseract_noop.py',
|
|
)
|
|
assert exitcode in (ExitCode.ok, ExitCode.pdfa_conversion_failed)
|