File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ def init_robot_out_parms(extra_prefix=""):
32
32
33
33
This function would typically be called prior to calling
34
34
create_robot_cmd_string.
35
+
36
+ Description of argument(s):
37
+ extra_prefix An extra prefix to be appended to the
38
+ default prefix for output file names.
35
39
"""
36
40
37
41
gp .dprint_executing ()
@@ -293,7 +297,7 @@ def create_robot_cmd_string(robot_file_path, *parms):
293
297
294
298
def process_robot_output_files (robot_cmd_buf = None ,
295
299
robot_rc = None ,
296
- gzip = 1 ):
300
+ gzip = None ):
297
301
r"""
298
302
Process robot output files which can involve several operations:
299
303
- If the files are in a temporary location, using SAVE_STATUS_POLICY to
@@ -311,6 +315,7 @@ def process_robot_output_files(robot_cmd_buf=None,
311
315
312
316
robot_cmd_buf = gm .dft (robot_cmd_buf , gcr_last_robot_cmd_buf )
313
317
robot_rc = gm .dft (robot_rc , gcr_last_robot_rc )
318
+ gzip = gm .dft (gzip , int (os .environ .get ("GZIP_ROBOT" , "1" )))
314
319
315
320
if robot_cmd_buf == "" :
316
321
# This can legitimately occur if this function is called from an
You can’t perform that action at this time.
0 commit comments