summaryrefslogtreecommitdiffstats
path: root/library/python/testing
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2026-01-13 20:00:22 +0300
committerrobot-piglet <[email protected]>2026-01-13 20:39:45 +0300
commit8536dc8a9c8d8789ac420e018556f6f455d72483 (patch)
treed25ea75a0df8a288a4b38dc68b9be04c656944c6 /library/python/testing
parenteaa0b46b02b858c0634646fbf28741f918f86eb9 (diff)
Intermediate changes
commit_hash:4caca7aaa95345680775ddf576c6642d73ebee70
Diffstat (limited to 'library/python/testing')
-rw-r--r--library/python/testing/recipe/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/recipe/__init__.py b/library/python/testing/recipe/__init__.py
index 4b99979a290..ebfdbc22d32 100644
--- a/library/python/testing/recipe/__init__.py
+++ b/library/python/testing/recipe/__init__.py
@@ -79,7 +79,7 @@ def get_options():
def set_env(key, value):
with open(ya.env_file, "a") as f:
- json.dump({key: value}, f)
+ json.dump({key: str(value) if value is not None else None}, f)
f.write("\n")