diff options
author | alevitskii <alevitskii@yandex-team.com> | 2024-05-30 13:43:02 +0300 |
---|---|---|
committer | alevitskii <alevitskii@yandex-team.com> | 2024-05-30 14:01:00 +0300 |
commit | 8f148709a6455eab65c8a7e2b7b0f6e9153fa179 (patch) | |
tree | 2169acfe8e0f2f70e18160cfc3d5cf933f72bc23 /build/plugins/nots.py | |
parent | 3341663f8c8348c0468b52bedd03615866cb5e9e (diff) | |
download | ydb-8f148709a6455eab65c8a7e2b7b0f6e9153fa179.tar.gz |
trim dart info in plugins
trim clang_tidy and force remove empty fields
0ae6ce915f0d2b0c97f87871a052a5adf2dd2e12
Diffstat (limited to 'build/plugins/nots.py')
-rw-r--r-- | build/plugins/nots.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/plugins/nots.py b/build/plugins/nots.py index f504d415ec..8fe01aeacd 100644 --- a/build/plugins/nots.py +++ b/build/plugins/nots.py @@ -486,7 +486,8 @@ def _add_test(unit, test_type, test_files, deps=None, test_record=None, test_cwd if test_record: full_test_record.update(test_record) - data = ytest.dump_test(unit, full_test_record) + # this kind of dart is very sensitive to missing fields, so we disable trimming + data = ytest.dump_test(unit, full_test_record, trim_falsy_fields=False) if data: unit.set_property(["DART_DATA", data]) |