Skip to content

Commit aa0ebd2

Browse files
authored
Fix syntax / pytest issues in reusable integration test workflow (#1468)
1 parent 233505e commit aa0ebd2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/reusable-integration-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
uv venv .venv
7373
source .venv/bin/activate
7474
uv pip install -e ./src -e ./api -e ./client
75+
# block pulling in breaking changes in pypdfium2 v5
7576
uv pip install \
7677
opencv-python \
7778
llama-index-embeddings-nvidia \
@@ -80,7 +81,7 @@ jobs:
8081
'milvus-lite==2.4.12' \
8182
'nvidia-riva-client==2.20.0' \
8283
'unstructured-client>=0.25.9' \
83-
'pypdfium2<5' \ # block pulling in breaking changes in pypdfium2 v5
84+
'pypdfium2<5' \
8485
tritonclient \
8586
markitdown \
8687
glom
@@ -109,4 +110,4 @@ jobs:
109110
source .venv/bin/activate
110111
echo 'Running integration tests...'
111112
unset LD_LIBRARY_PATH
112-
python -m pytest -rsx tests/integration
113+
python -m pytest -rsx -m integration tests/integration

0 commit comments

Comments
 (0)