Skip to content
Closed
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 scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ exec env -i \
LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \
PYTHONHASHSEED=0 \
PYTHONUTF8=1 \

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This allowlist is reached only after venv discovery. Current scripts/run_tests.sh:46-53 requires bin/activate and bin/python, so a standard native-Windows Scripts/activate venv exits at lines 61-64 before this line runs unless HERMES_PYTHON is supplied. Please add the guarded Scripts/ probe included by related #67387.

${USERPROFILE:+USERPROFILE="$USERPROFILE"} \
${HOMEDRIVE:+HOMEDRIVE="$HOMEDRIVE"} \
${HOMEPATH:+HOMEPATH="$HOMEPATH"} \
${SYSTEMROOT:+SYSTEMROOT="$SYSTEMROOT"} \
${TEMP:+TEMP="$TEMP"} \
${TMP:+TMP="$TMP"} \
${HERMES_RUN_SLOW_PET_TESTS:+HERMES_RUN_SLOW_PET_TESTS="$HERMES_RUN_SLOW_PET_TESTS"} \
${EXTRA_PYTHONPATH:+PYTHONPATH="$EXTRA_PYTHONPATH"} \
${EXTRA_PYTEST_PLUGINS:+PYTEST_PLUGINS="$EXTRA_PYTEST_PLUGINS"} \
Expand Down