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