Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/test_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,15 @@ jobs:
# xdist is disabled for CLI tests because they test process-level
# behavior (spawning marimo processes, port binding) that conflicts
# with parallel execution.
#
# UV_FIND_LINKS points sandbox subprocesses at the locally-built wheel,
# so `marimo[lsp]==<current version>` resolves to it instead of PyPI.
# Without this, a marimo release published less than UV_EXCLUDE_NEWER ago
# falls outside the cutoff and sandbox resolution fails.
- name: Test CLI
shell: bash
env:
UV_FIND_LINKS: ${{ github.workspace }}
run: |
uv venv
uv pip install --group=test-optional --group=dev marimo*.whl
Expand Down
Loading