diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0196d2..65d8f56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | diff --git a/.github/workflows/mcp-server.yml b/.github/workflows/mcp-server.yml index 55ffaf4..233fd42 100644 --- a/.github/workflows/mcp-server.yml +++ b/.github/workflows/mcp-server.yml @@ -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()