mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-23 14:04:18 +02:00
Fix ty 0.0.14 compatibility and upgrade dependencies (#3027)
This commit is contained in:
parent
46e0e01066
commit
f4842cd3e6
5 changed files with 284 additions and 274 deletions
3
.github/workflows/run-static.yml
vendored
3
.github/workflows/run-static.yml
vendored
|
|
@ -29,7 +29,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
resolution: locked
|
||||
|
||||
|
|
|
|||
24
.github/workflows/run-tests.yml
vendored
24
.github/workflows/run-tests.yml
vendored
|
|
@ -38,14 +38,17 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
resolution: locked
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run unit tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run client process tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
with:
|
||||
test-type: client_process
|
||||
|
||||
|
|
@ -57,13 +60,16 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv (lowest-direct)
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
resolution: lowest-direct
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run unit tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run client process tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
with:
|
||||
test-type: client_process
|
||||
|
||||
|
|
@ -75,11 +81,13 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
resolution: locked
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run integration tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
with:
|
||||
test-type: integration
|
||||
env:
|
||||
|
|
|
|||
18
.github/workflows/run-upgrade-checks.yml
vendored
18
.github/workflows/run-upgrade-checks.yml
vendored
|
|
@ -32,7 +32,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv (upgrade)
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
resolution: upgrade
|
||||
|
||||
|
|
@ -57,14 +58,17 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv (upgrade)
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
resolution: upgrade
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run unit tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run client process tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
with:
|
||||
test-type: client_process
|
||||
|
||||
|
|
@ -76,11 +80,13 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: ./.github/actions/setup-uv
|
||||
- name: Setup uv (upgrade)
|
||||
uses: ./.github/actions/setup-uv
|
||||
with:
|
||||
resolution: upgrade
|
||||
|
||||
- uses: ./.github/actions/run-pytest
|
||||
- name: Run integration tests
|
||||
uses: ./.github/actions/run-pytest
|
||||
with:
|
||||
test-type: integration
|
||||
env:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue