Skip to content

Commit d529de4

Browse files
committed
try again
1 parent 9eb066f commit d529de4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.evergreen/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ cleanup_tests() {
3737
trap "cleanup_tests" SIGINT ERR
3838

3939
# Start the test runner.
40-
set -x
41-
env
40+
echo "Running tests with UV_PYTHON=${UV_PYTHON:-}..."
4241
uv run ${UV_ARGS} --reinstall-package pymongo .evergreen/scripts/run_tests.py "$@"
42+
echo "Running tests with UV_PYTHON=${UV_PYTHON:-}... done."
4343

4444
cleanup_tests

.evergreen/scripts/setup_tests.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,6 @@ def handle_test_env() -> None:
154154
# Start compiling the args we'll pass to uv.
155155
UV_ARGS = ["--extra test --no-group dev"]
156156

157-
# If UV_PYTHON is set, add it to args.
158-
if is_set("UV_PYTHON"):
159-
UV_ARGS.extend(["--python", os.environ["UV_PYTHON"]])
160-
161157
test_title = test_name
162158
if sub_test_name:
163159
test_title += f" {sub_test_name}"

0 commit comments

Comments
 (0)