Loading scripts/ivas_conformance/runConformance.py +4 −2 Original line number Diff line number Diff line Loading @@ -1362,7 +1362,7 @@ class MLDConformance: contextPrefix: str = "", emitConsole: bool = True, returnOutput: bool = False, ) -> int: ) -> Union[int, Tuple[int, str]]: contextPrefix = contextPrefix or (f"[{tag}]" if tag else "") return self._process( command, Loading @@ -1381,12 +1381,14 @@ class MLDConformance: contextPrefix: str = "", emitConsole: bool = True, returnOutput: bool = False, ) -> int: ) -> Union[int, Tuple[int, str]]: prefix = (contextPrefix + " ") if contextPrefix else "" if self.args.verbose and emitConsole: print(f"{prefix}Command: {command}", flush=True) if self.args.dryrun: self.appendRunlog(command=command) if returnOutput: return 0, "" return 0 c = subprocess.run( Loading Loading
scripts/ivas_conformance/runConformance.py +4 −2 Original line number Diff line number Diff line Loading @@ -1362,7 +1362,7 @@ class MLDConformance: contextPrefix: str = "", emitConsole: bool = True, returnOutput: bool = False, ) -> int: ) -> Union[int, Tuple[int, str]]: contextPrefix = contextPrefix or (f"[{tag}]" if tag else "") return self._process( command, Loading @@ -1381,12 +1381,14 @@ class MLDConformance: contextPrefix: str = "", emitConsole: bool = True, returnOutput: bool = False, ) -> int: ) -> Union[int, Tuple[int, str]]: prefix = (contextPrefix + " ") if contextPrefix else "" if self.args.verbose and emitConsole: print(f"{prefix}Command: {command}", flush=True) if self.args.dryrun: self.appendRunlog(command=command) if returnOutput: return 0, "" return 0 c = subprocess.run( Loading