Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/after-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
cache-suffix: smokeshow

- uses: dawidd6/action-download-artifact@v6
with:
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
cache-suffix: ${{ matrix.install.name }}

- uses: denoland/setup-deno@v2
Expand All @@ -173,9 +172,10 @@ jobs:

- run: mkdir .coverage

- run: uv run mcp-run-python example --deps=numpy
- run: uv sync --only-dev

- run: uv run mcp-run-python example --deps=numpy

- name: cache HuggingFace models
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -213,7 +213,6 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
cache-suffix: lowest-versions

- uses: denoland/setup-deno@v2
Expand All @@ -224,6 +223,8 @@ jobs:

- run: uv sync --group dev

- run: uv run mcp-run-python example --deps=numpy

- name: cache HuggingFace models
uses: actions/cache@v4
with:
Expand All @@ -232,8 +233,6 @@ jobs:
restore-keys: |
hf-${{ runner.os }}-

- run: uv run mcp-run-python example --deps=numpy

- run: unset UV_FROZEN

- run: uv run --all-extras --resolution lowest-direct coverage run -m pytest --durations=100 -n auto --dist=loadgroup
Expand Down Expand Up @@ -264,7 +263,6 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
cache-suffix: all-extras

- name: cache HuggingFace models
Expand Down