diff options
author | nkozlovskiy <[email protected]> | 2023-08-17 20:01:03 +0300 |
---|---|---|
committer | nkozlovskiy <[email protected]> | 2023-08-17 21:52:31 +0300 |
commit | 9073875ff6757a42a3a29562c687ee49f4943f6c (patch) | |
tree | 7c0c5aa7e42943d1cc352c8117d20d263eca0155 /.github/scripts | |
parent | e466ba3e1b674e543c9e2e864aa1b31e6805a2ac (diff) |
ci: mute test_ydb_scripting.py::TestExecuteScriptWithParamsFromStdin::test_batching_full_tsv[stream] and THugeMigration::RollbackMap_HugeBlobs
Diffstat (limited to '.github/scripts')
-rwxr-xr-x | .github/scripts/tests/fail-checker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/tests/fail-checker.py b/.github/scripts/tests/fail-checker.py index 78ec5a25c92..3dd5d11d56c 100755 --- a/.github/scripts/tests/fail-checker.py +++ b/.github/scripts/tests/fail-checker.py @@ -11,7 +11,7 @@ def check_for_fail(paths: List[str]): for fn, suite, case in iter_xml_files(path): is_failure = case.find("failure") is not None is_error = case.find("error") is not None - test_name = f"{case.get('classname')}::{case.get('name')}" + test_name = f"{case.get('classname')}/{case.get('name')}" if is_failure: failed_list.append((test_name, fn)) |