diff options
author | thegeorg <thegeorg@yandex-team.com> | 2022-07-13 11:58:05 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2022-07-13 11:58:05 +0300 |
commit | 6157257b248ac6fd5eaa1b37b2b808ae3b815d3d (patch) | |
tree | 5bd7ae202d562414c8d160a2e2b3ccc4991ab869 /library/python/testing/yatest_lib/ya.py | |
parent | bd624aed90654edd50d7991ae2f3bf70b4c69a09 (diff) | |
download | ydb-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.py | 4 |
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") |