Add UV Transport (#1270)

Co-authored-by: Jeremiah Lowin <153965+jlowin@users.noreply.github.com>
This commit is contained in:
William Easton 2025-07-28 14:41:36 -05:00 committed by GitHub
commit 3be8f5ea93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 252 additions and 91 deletions

View file

@ -46,8 +46,11 @@ jobs:
- name: Install FastMCP
run: uv sync --locked
- name: Run tests (excluding integration)
run: uv run pytest tests -m "not integration"
- name: Run tests (excluding integration and client_process)
run: uv run pytest tests -m "not integration and not client_process"
- name: Run client process tests separately
run: uv run pytest tests -m "client_process" -x
run_integration_tests:
name: "Run integration tests"