From 2b8b44fa40a9ed2cb9bd661f01b7c69c5ccffede Mon Sep 17 00:00:00 2001 From: Michele Dolfi Date: Fri, 31 Oct 2025 17:59:40 +0100 Subject: [PATCH] chore: avoid installing multiple times dependencies Signed-off-by: Michele Dolfi --- .github/workflows/job-image.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/job-image.yml b/.github/workflows/job-image.yml index f98fdfd..e1251b8 100644 --- a/.github/workflows/job-image.yml +++ b/.github/workflows/job-image.yml @@ -160,13 +160,10 @@ jobs: pip install uv uv venv --allow-existing source .venv/bin/activate - uv sync --all-extras --no-extra flash-attn + uv sync --only-dev # Run pytest tests echo "Running tests..." - # Test import - python -c 'from docling_serve.app import create_app; create_app()' - # Run pytest and check result directly if ! pytest -sv -k "test_convert_url" tests/test_1-url-async.py \ --disable-warnings; then