Browse Source

Fix tests

v-korovin 1 year ago
parent
commit
e3dee9bc4c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      library/python/testing/yatest_common/yatest/common/process.py

+ 2 - 0
library/python/testing/yatest_common/yatest/common/process.py

@@ -695,6 +695,7 @@ def py_execute(
     wait=True,
     process_progress_listener=None,
     close_fds=False,
+    text=False,
 ):
     """
     Executes a command with the arcadia python
@@ -710,6 +711,7 @@ def py_execute(
     :param creationflags: command creation flags
     :param wait: should wait until the command finishes
     :param process_progress_listener=object that is polled while execution is in progress
+    :param text: Return original str
     :return _Execution: Execution object
     """
     if isinstance(command, six.string_types):