@@ -90,6 +90,21 @@ def control_port():
90
90
91
91
# ---------------------- Module initialization ---------------------------
92
92
93
+ def avoid_duplicated_logs ():
94
+ """
95
+ Remove direct root logger output to file descriptors.
96
+ This default is causing duplicates because all our messages go through
97
+ regular logging as well and are thus displayed twice.
98
+ """
99
+ todel = []
100
+ for handler in logging .root .handlers :
101
+ if handler .__class__ == logging .StreamHandler :
102
+ # Beware: As for pytest 7.2.2, LiveLogging and LogCapture
103
+ # handlers inherit from logging.StreamHandler
104
+ todel .append (handler )
105
+ for handler in todel :
106
+ logging .root .handlers .remove (handler )
107
+
93
108
def parse_env (env_text ):
94
109
"""Parse the POSIX env format into Python dictionary."""
95
110
out = {}
@@ -283,6 +298,7 @@ def system_test_name(request):
283
298
@pytest .fixture (scope = "module" )
284
299
def logger (system_test_name ):
285
300
"""Logging facility specific to this test."""
301
+ avoid_duplicated_logs ()
286
302
return logging .getLogger (system_test_name )
287
303
288
304
@pytest .fixture (scope = "module" )
@@ -378,29 +394,26 @@ def _run_script( # pylint: disable=too-many-arguments
378
394
raise FileNotFoundError (f"script { script } not found in { cwd } " )
379
395
logger .debug ("running script: %s %s %s" , interpreter , script , " " .join (args ))
380
396
logger .debug (" workdir: %s" , cwd )
381
- stdout = b""
382
397
returncode = 1
383
- try :
384
- proc = subprocess .run (
385
- [interpreter , script ] + args ,
386
- env = env ,
387
- check = True ,
388
- stdout = subprocess .PIPE ,
389
- stderr = subprocess .STDOUT ,
390
- )
391
- except subprocess .CalledProcessError as exc :
392
- stdout = exc .stdout
393
- returncode = exc .returncode
394
- raise exc
395
- else :
396
- stdout = proc .stdout
398
+
399
+ cmd = [interpreter , script ] + args
400
+ with subprocess .Popen (
401
+ cmd ,
402
+ env = env ,
403
+ stdout = subprocess .PIPE ,
404
+ stderr = subprocess .STDOUT ,
405
+ bufsize = 1 ,
406
+ universal_newlines = True ,
407
+ errors = "backslashreplace" ,
408
+ ) as proc :
409
+ if proc .stdout :
410
+ for line in proc .stdout :
411
+ logger .info (" %s" , line .rstrip ("\n " ))
412
+ proc .communicate ()
397
413
returncode = proc .returncode
398
- finally :
399
- if stdout :
400
- for line in stdout .decode ().splitlines ():
401
- logger .debug (" %s" , line )
414
+ if returncode :
415
+ raise subprocess .CalledProcessError (returncode , cmd )
402
416
logger .debug (" exited with %d" , returncode )
403
- return proc
404
417
405
418
@pytest .fixture (scope = "module" )
406
419
def shell (env , system_test_dir , logger ):
0 commit comments