diff options
author | Kirill Rysin <35688753+naspirato@users.noreply.github.com> | 2024-09-26 14:55:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 12:55:16 +0000 |
commit | 623cc67d26e52362eb1a162ea134ba9c9a2eca77 (patch) | |
tree | e03e44a24262d3464d3e08983395817b4176d828 | |
parent | d1664d6fec864c1199068c10904e3f5f0b2b2bfe (diff) | |
download | ydb-623cc67d26e52362eb1a162ea134ba9c9a2eca77.tar.gz |
fix usage YaMuteCheck() for different files (#9803)
-rwxr-xr-x | .github/scripts/tests/get_muted_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/scripts/tests/get_muted_tests.py b/.github/scripts/tests/get_muted_tests.py index e6a76132c8..ff28a7f831 100755 --- a/.github/scripts/tests/get_muted_tests.py +++ b/.github/scripts/tests/get_muted_tests.py @@ -216,6 +216,7 @@ def mute_applier(args): # checking added lines write_to_file('\n'.join(added_lines), added_mute_lines_file) + mute_check = YaMuteCheck() mute_check.load(added_mute_lines_file) added_muted_tests = [] print("New muted tests captured") @@ -227,6 +228,7 @@ def mute_applier(args): # checking removed lines write_to_file('\n'.join(removed_lines), removed_mute_lines_file) + mute_check = YaMuteCheck() mute_check.load(removed_mute_lines_file) removed_muted_tests = [] print("Unmuted tests captured") |