Skip to content

Commit e9988f7

Browse files
committed
debug
1 parent 5c2a7a4 commit e9988f7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.evergreen/run-tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/bash
2-
set -eu
2+
set -eux
33

44
SCRIPT_DIR=$(dirname ${BASH_SOURCE:-$0})
55
SCRIPT_DIR="$( cd -- "$SCRIPT_DIR" > /dev/null 2>&1 && pwd )"
66
ROOT_DIR="$(dirname "$(dirname $SCRIPT_DIR)")"
77

8+
pwd
89
export PIP_QUIET=1 # Quiet by default
910
export PIP_PREFER_BINARY=1 # Prefer binary dists by default
1011
export UV_FROZEN=1 # Do not modify lock files
@@ -25,6 +26,7 @@ else
2526
echo "Missing test inputs, please run 'just setup-test'"
2627
fi
2728

29+
pwd
2830
pushd $ROOT_DIR
2931

3032
# Source the local secrets export file if available.
@@ -34,6 +36,7 @@ fi
3436

3537
PYTHON_IMPL=$(uv run python -c "import platform; print(platform.python_implementation())")
3638

39+
pwd
3740
# Ensure C extensions if applicable.
3841
if [ -z "${NO_EXT:-}" ] && [ "$PYTHON_IMPL" = "CPython" ]; then
3942
uv run --frozen tools/fail_if_no_c.py

0 commit comments

Comments
 (0)