aboutsummaryrefslogtreecommitdiffstats
path: root/library/python
diff options
context:
space:
mode:
authorv-korovin <v-korovin@yandex-team.com>2023-07-19 13:33:39 +0300
committerv-korovin <v-korovin@yandex-team.com>2023-07-19 13:33:39 +0300
commite3dee9bc4c69b09540ef88df8b4d8f988d8b58b2 (patch)
treedf0bf8e947f02cf9b85947e6bb6e87af7f980cc4 /library/python
parentbe90cfb4f9a09f882e1886fb93f83ad850a3db88 (diff)
downloadydb-e3dee9bc4c69b09540ef88df8b4d8f988d8b58b2.tar.gz
Fix tests
Diffstat (limited to 'library/python')
-rw-r--r--library/python/testing/yatest_common/yatest/common/process.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py
index 9ecaed7725..2540a01e17 100644
--- a/library/python/testing/yatest_common/yatest/common/process.py
+++ b/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):