Skip to content

Commit 9723e53

Browse files
committed
try bailing on dev setup
1 parent b6044a6 commit 9723e53

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.evergreen/scripts/setup-dev-env.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ HERE="$( cd -- "$HERE" > /dev/null 2>&1 && pwd )"
77
ROOT=$(dirname "$(dirname $HERE)")
88
pushd $ROOT > /dev/null
99

10+
exit 0
11+
1012
# Source the env files to pick up common variables.
1113
if [ -f $HERE/env.sh ]; then
1214
. $HERE/env.sh
@@ -17,7 +19,7 @@ if [ -f $HERE/test-env.sh ]; then
1719
fi
1820

1921
# Ensure dependencies are installed.
20-
# bash $HERE/install-dependencies.sh
22+
bash $HERE/install-dependencies.sh
2123

2224
# Get the appropriate UV_PYTHON.
2325
. $ROOT/.evergreen/utils.sh
@@ -29,8 +31,8 @@ if [ -z "${PYTHON_BINARY:-}" ]; then
2931
PYTHON_BINARY=$(find_python3)
3032
fi
3133
fi
32-
# export UV_PYTHON=${PYTHON_BINARY}
33-
# echo "Using python $UV_PYTHON"
34+
export UV_PYTHON=${PYTHON_BINARY}
35+
echo "Using python $UV_PYTHON"
3436

3537
# Add the default install path to the path if needed.
3638
if [ -z "${PYMONGO_BIN_DIR:-}" ]; then

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resync:
1717
@uv sync --quiet
1818

1919
install:
20-
# bash .evergreen/scripts/setup-dev-env.sh
20+
bash .evergreen/scripts/setup-dev-env.sh
2121
uvx pre-commit install
2222

2323
[group('docs')]

0 commit comments

Comments
 (0)