aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/testing/yatest_lib/ya.py
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-07-13 11:58:05 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-07-13 11:58:05 +0300
commit6157257b248ac6fd5eaa1b37b2b808ae3b815d3d (patch)
tree5bd7ae202d562414c8d160a2e2b3ccc4991ab869 /library/python/testing/yatest_lib/ya.py
parentbd624aed90654edd50d7991ae2f3bf70b4c69a09 (diff)
downloadydb-6157257b248ac6fd5eaa1b37b2b808ae3b815d3d.tar.gz
Remove duplicates from stable ydb config
Diffstat (limited to 'library/python/testing/yatest_lib/ya.py')
-rw-r--r--library/python/testing/yatest_lib/ya.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/python/testing/yatest_lib/ya.py b/library/python/testing/yatest_lib/ya.py
index 34a72d75f6..dc4011db92 100644
--- a/library/python/testing/yatest_lib/ya.py
+++ b/library/python/testing/yatest_lib/ya.py
@@ -91,9 +91,9 @@ class Ya(object):
self._context["project_path"] = context_runtime.get("project_path")
self._context["modulo"] = context_runtime.get("split_count", 1)
self._context["modulo_index"] = context_runtime.get("split_index", 0)
- self._context["work_path"] = context_runtime.get("work_path")
+ self._context["work_path"] = to_str(context_runtime.get("work_path"))
self._context["test_tool_path"] = context_runtime.get("test_tool_path")
- self._context["test_output_ram_drive_path"] = context_runtime.get("test_output_ram_drive_path")
+ self._context["test_output_ram_drive_path"] = to_str(context_runtime.get("test_output_ram_drive_path"))
self._context["ya_global_resources"] = context_resources.get("global")
self._context["sanitize"] = context_build.get("sanitizer")