File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2- set -eu
2+ set -eux
33
44SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
55SCRIPT_DIR=" $( cd -- " $SCRIPT_DIR " > /dev/null 2>&1 && pwd ) "
66ROOT_DIR=" $( dirname " $( dirname $SCRIPT_DIR ) " ) "
77
8+ pwd
89export PIP_QUIET=1 # Quiet by default
910export PIP_PREFER_BINARY=1 # Prefer binary dists by default
1011export UV_FROZEN=1 # Do not modify lock files
2526 echo " Missing test inputs, please run 'just setup-test'"
2627fi
2728
29+ pwd
2830pushd $ROOT_DIR
2931
3032# Source the local secrets export file if available.
3436
3537PYTHON_IMPL=$( uv run python -c " import platform; print(platform.python_implementation())" )
3638
39+ pwd
3740# Ensure C extensions if applicable.
3841if [ -z " ${NO_EXT:- } " ] && [ " $PYTHON_IMPL " = " CPython" ]; then
3942 uv run --frozen tools/fail_if_no_c.py
You can’t perform that action at this time.
0 commit comments