File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 33
33
PIP_QUIET=0 uv run ${UV_ARGS} --with pip pip list
34
34
35
35
# Start the test runner.
36
- uv run ${UV_ARGS} .evergreen/scripts/run_tests.py
36
+ uv run ${UV_ARGS} .evergreen/scripts/run_tests.py " $@ "
37
37
38
38
popd
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
3
import json
4
+ import logging
4
5
import os
5
6
import platform
6
7
import shutil
@@ -106,8 +107,11 @@ def run() -> None:
106
107
test_kms_remote (SUB_TEST_NAME )
107
108
return
108
109
110
+ if os .environ .get ("DEBUG_LOG" ):
111
+ TEST_ARGS .extend (f"-o log_cli_level={ logging .DEBUG } -o log_cli=1" .split ())
112
+
109
113
# Run local tests.
110
- pytest .main (TEST_ARGS )
114
+ pytest .main (TEST_ARGS + sys . argv [ 1 :] )
111
115
112
116
# Handle perf test post actions.
113
117
if TEST_PERF :
You can’t perform that action at this time.
0 commit comments