We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 233505e commit aa0ebd2Copy full SHA for aa0ebd2
.github/workflows/reusable-integration-test.yml
@@ -72,6 +72,7 @@ jobs:
72
uv venv .venv
73
source .venv/bin/activate
74
uv pip install -e ./src -e ./api -e ./client
75
+ # block pulling in breaking changes in pypdfium2 v5
76
uv pip install \
77
opencv-python \
78
llama-index-embeddings-nvidia \
@@ -80,7 +81,7 @@ jobs:
80
81
'milvus-lite==2.4.12' \
82
'nvidia-riva-client==2.20.0' \
83
'unstructured-client>=0.25.9' \
- 'pypdfium2<5' \ # block pulling in breaking changes in pypdfium2 v5
84
+ 'pypdfium2<5' \
85
tritonclient \
86
markitdown \
87
glom
@@ -109,4 +110,4 @@ jobs:
109
110
111
echo 'Running integration tests...'
112
unset LD_LIBRARY_PATH
- python -m pytest -rsx tests/integration
113
+ python -m pytest -rsx -m integration tests/integration
0 commit comments