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
6 changes: 5 additions & 1 deletion .github/workflows/runtime-isolation-shadow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ jobs:
set -euo pipefail
python -m pip install --disable-pip-version-check uv==0.11.6
uv sync --frozen --no-dev
uv pip install --no-deps -e external/QuantPlatformKit -e external/CryptoStrategies
uv pip install \
--python "$UV_PROJECT_ENVIRONMENT/bin/python" \
--no-deps \
-e external/QuantPlatformKit \
-e external/CryptoStrategies

- name: Run current-runner fixed-input no-order replay
env:
Expand Down
1 change: 1 addition & 0 deletions tests/test_runtime_isolation_shadow.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def test_shadow_workflow_is_manual_ephemeral_and_has_no_secret_capability(self)
self.assertIn("if: ${{ inputs.include_current_runner }}", current_runner_shadow)
self.assertIn("runs-on: self-hosted", current_runner_shadow)
self.assertNotIn("environment:", current_runner_shadow)
self.assertIn('--python "$UV_PROJECT_ENVIRONMENT/bin/python"', current_runner_shadow)
self.assertIn("contents: read", workflow)
self.assertNotIn("id-token: write", workflow)
self.assertNotIn("environment:", workflow)
Expand Down