summaryrefslogtreecommitdiffstats
path: root/.github/scripts
diff options
context:
space:
mode:
authorKirill Rysin <[email protected]>2025-07-04 17:53:29 +0200
committerKirill Rysin <[email protected]>2025-07-07 14:01:49 +0300
commitfdd5ab176afdcdee39fee6a2d52fe27632524a97 (patch)
treea070bb533b1fe8c6e0d1361f9a3c3a2d52002a9e /.github/scripts
parentc4660130f0a86eab4d2cb1a4d698e1af33b2b91f (diff)
init
Diffstat (limited to '.github/scripts')
-rwxr-xr-x.github/scripts/tests/transform_ya_junit.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/scripts/tests/transform_ya_junit.py b/.github/scripts/tests/transform_ya_junit.py
index 05d6927d38f..5efb47b7387 100755
--- a/.github/scripts/tests/transform_ya_junit.py
+++ b/.github/scripts/tests/transform_ya_junit.py
@@ -186,7 +186,10 @@ def transform(fp, mute_check: YaMuteCheck, ya_out_dir, save_inplace, log_url_pre
for case in suite.findall("testcase"):
test_name = case.get("name")
+ test_classname = case.get("classname") + '.' + test_name
+ case.set("name", test_classname)
case.set("classname", suite_name)
+ test_name = test_classname
is_fail = is_faulty_testcase(case)
has_fail_tests |= is_fail
@@ -269,6 +272,5 @@ def main():
test_stuff_prefix,
)
-
if __name__ == "__main__":
main()