Update e2e_tests.yml
This commit is contained in:
parent
61157725d1
commit
58a4e34b5d
1 changed files with 6 additions and 3 deletions
9
.github/workflows/e2e_tests.yml
vendored
9
.github/workflows/e2e_tests.yml
vendored
|
|
@ -687,10 +687,13 @@ jobs:
|
||||||
python-version: '3.11.x'
|
python-version: '3.11.x'
|
||||||
extra-dependencies: "redis"
|
extra-dependencies: "redis"
|
||||||
|
|
||||||
- name: Install correct dependencies for mcp
|
- name: Install minimal MCP dependencies from cognee-mcp lockfile
|
||||||
run: |
|
run: |
|
||||||
uv run pip install -e ./cognee-mcp
|
# Extract exact versions of mcp, fastmcp, httpx from cognee-mcp lockfile and install only those
|
||||||
uv run pip install --force-reinstall -e .
|
cd cognee-mcp
|
||||||
|
MCP_DEPS=$(uv export --no-hashes --format requirements | grep -E '^(mcp|fastmcp|httpx)==')
|
||||||
|
cd ..
|
||||||
|
echo "$MCP_DEPS" | xargs uv run pip install
|
||||||
|
|
||||||
- name: Run api/tool usage logger
|
- name: Run api/tool usage logger
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue