fix(ci): use uv sync

This commit is contained in:
AFredefon
2026-03-11 01:17:43 +01:00
parent f8002254e5
commit b137f48e7f
2 changed files with 4 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ jobs:
run: uv python install 3.14
- name: Install dependencies
run: uv sync
run: uv sync --all-extras
- name: Run MCP tests
run: |

View File

@@ -23,7 +23,7 @@ jobs:
run: uv python install 3.14
- name: Install dependencies
run: uv sync
run: uv sync --all-extras
- name: Start MCP server in background
run: |
@@ -34,8 +34,8 @@ jobs:
- name: Run MCP tool tests
run: |
cd fuzzforge-mcp/tests
uv run pytest test_resources.py -v
cd fuzzforge-mcp
uv run --extra tests pytest tests/test_resources.py -v
- name: Stop MCP server
if: always()