diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33fb37ac..81a31744 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: "Run CI" on: pull_request: - types: [opened, reopened, synchronize, ready_for_review] + types: [opened, reopened] push: branches: - "**" @@ -25,4 +25,4 @@ jobs: # - uses: ./.github/actions/setup-poetry # - name: Build docs # run: poetry run mkdocs build --verbose --clean - \ No newline at end of file + diff --git a/tests/test_backend_docling_parse.py b/tests/test_backend_docling_parse.py index 87ec2840..4400fec4 100644 --- a/tests/test_backend_docling_parse.py +++ b/tests/test_backend_docling_parse.py @@ -13,7 +13,7 @@ from docling.document_converter import DocumentConverter @pytest.fixture def test_doc_path(): - return Path("./data/2206.01062.pdf") + return Path("./tests/data/2206.01062.pdf") def test_get_text_from_rect(test_doc_path): diff --git a/tests/test_backend_pdfium.py b/tests/test_backend_pdfium.py index 56b4ee42..471240e8 100644 --- a/tests/test_backend_pdfium.py +++ b/tests/test_backend_pdfium.py @@ -11,7 +11,7 @@ from docling.datamodel.base_models import BoundingBox @pytest.fixture def test_doc_path(): - return Path("./data/2206.01062.pdf") + return Path("./tests/data/2206.01062.pdf") def test_get_text_from_rect(test_doc_path):