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
3
3
4
4
SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
5
5
SCRIPT_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
7
9
8
- pwd
9
10
export PIP_QUIET=1 # Quiet by default
10
11
export PIP_PREFER_BINARY=1 # Prefer binary dists by default
11
12
export UV_FROZEN=1 # Do not modify lock files
26
27
echo " Missing test inputs, please run 'just setup-test'"
27
28
fi
28
29
29
- pwd
30
- pushd $ROOT_DIR
31
30
32
31
# Source the local secrets export file if available.
33
32
if [ -f " ./secrets-export.sh" ]; then
36
35
37
36
PYTHON_IMPL=$( uv run python -c " import platform; print(platform.python_implementation())" )
38
37
39
- pwd
40
38
# Ensure C extensions if applicable.
41
39
if [ -z " ${NO_EXT:- } " ] && [ " $PYTHON_IMPL " = " CPython" ]; then
42
40
uv run --frozen tools/fail_if_no_c.py
You can’t perform that action at this time.
0 commit comments