fix(taskfile): Generate the tests:rust-all LocalStack container name via uv so that a missing uuidgen no longer yields an empty name (fixes #2465). - #2469
Conversation
…e via `uv` so that a missing `uuidgen` no longer yields an empty name (fixes y-scope#2465).
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
WalkthroughThe LocalStack test task now generates its container name with ChangesLocalStack test task
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Description
Resolves
LOCALSTACK_CONTAINER_NAMEwith a singleuv run pythoncommand instead of auuidgen | tr | sedpipeline, so that a missing interpreter fails the task rather than yielding an empty name.uvis already a prerequisite and already resolves the adjacentLOCALSTACK_PORT, so this adds no dependency.Fixes #2465.
Checklist
breaking change.
Validation performed
On Ubuntu 26.04 (WSL2, aarch64) without
uuidgeninstalled:uv run python -c "import uuid; print('clp-localstack-rust-' + str(uuid.uuid4()))"printsclp-localstack-rust-a34aac8f-d8ad-4efd-a9e7-c0be446d5053and exits 0.task --dry tests:rust-allshows the name reachingstart.pyand the deferredstop.py:--name "clp-localstack-rust-69b62977-0ae5-490c-b7a5-81ee93354d32".task lint:check-yamlpasses.The full
tests:rust-allsuite was not run locally; the CI job covers it.