File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ set -eux
33
44SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
55SCRIPT_DIR=" $( cd -- " $SCRIPT_DIR " > /dev/null 2>&1 && pwd ) "
6- ROOT_DIR=" $( dirname " $( dirname $SCRIPT_DIR ) " ) "
6+ ROOT_DIR=" $( dirname $SCRIPT_DIR ) "
7+
8+ pushd $ROOT_DIR
79
8- pwd
910export PIP_QUIET=1 # Quiet by default
1011export PIP_PREFER_BINARY=1 # Prefer binary dists by default
1112export UV_FROZEN=1 # Do not modify lock files
2627 echo " Missing test inputs, please run 'just setup-test'"
2728fi
2829
29- pwd
30- pushd $ROOT_DIR
3130
3231# Source the local secrets export file if available.
3332if [ -f " ./secrets-export.sh" ]; then
3635
3736PYTHON_IMPL=$( uv run python -c " import platform; print(platform.python_implementation())" )
3837
39- pwd
4038# Ensure C extensions if applicable.
4139if [ -z " ${NO_EXT:- } " ] && [ " $PYTHON_IMPL " = " CPython" ]; then
4240 uv run --frozen tools/fail_if_no_c.py
You can’t perform that action at this time.
0 commit comments