File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ timeout:
26
26
27
27
functions :
28
28
" fetch source " :
29
- # Executes git clone and applies the submitted patch, if any
29
+ # Executes clone and applies the submitted patch, if any
30
30
- command : git.get_project
31
31
params :
32
32
directory : " src"
@@ -67,7 +67,6 @@ functions:
67
67
PROJECT_DIRECTORY: "$PROJECT_DIRECTORY"
68
68
PREPARE_SHELL: |
69
69
set -o errexit
70
- set -o xtrace
71
70
export DRIVERS_TOOLS="$DRIVERS_TOOLS"
72
71
export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME"
73
72
export MONGODB_BINARIES="$MONGODB_BINARIES"
Original file line number Diff line number Diff line change @@ -122,7 +122,9 @@ def runTest(self):
122
122
self .max_iterations = NUM_ITERATIONS
123
123
for i in range (NUM_ITERATIONS ):
124
124
if time .monotonic () - start > MAX_ITERATION_TIME :
125
- warnings .warn ("Test timed out, completed %s iterations." % i )
125
+ with warnings .catch_warnings ():
126
+ warnings .simplefilter ("default" )
127
+ warnings .warn ("Test timed out, completed %s iterations." % i )
126
128
break
127
129
self .before ()
128
130
with Timer () as timer :
You can’t perform that action at this time.
0 commit comments