aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-08-17 20:01:03 +0300
committernkozlovskiy <nmk@ydb.tech>2023-08-17 21:52:31 +0300
commit9073875ff6757a42a3a29562c687ee49f4943f6c (patch)
tree7c0c5aa7e42943d1cc352c8117d20d263eca0155
parente466ba3e1b674e543c9e2e864aa1b31e6805a2ac (diff)
downloadydb-9073875ff6757a42a3a29562c687ee49f4943f6c.tar.gz
ci: mute test_ydb_scripting.py::TestExecuteScriptWithParamsFromStdin::test_batching_full_tsv[stream] and THugeMigration::RollbackMap_HugeBlobs
-rw-r--r--.github/config/muted_functest.txt1
-rw-r--r--.github/config/muted_test.txt1
-rwxr-xr-x.github/scripts/tests/fail-checker.py2
3 files changed, 3 insertions, 1 deletions
diff --git a/.github/config/muted_functest.txt b/.github/config/muted_functest.txt
index a38ec65aab..b0bdec5c8a 100644
--- a/.github/config/muted_functest.txt
+++ b/.github/config/muted_functest.txt
@@ -14,3 +14,4 @@ ydb/tests/functional/tenants/test_dynamic_tenants.py::*
ydb/tests/functional/tenants/test_storage_config.py::TestStorageConfig::*
ydb/tests/functional/tenants/test_tenants.py::*
ydb/tests/functional/ydb_cli/test_ydb_impex.py::TestImpex::*
+ydb/tests/functional/ydb_cli/test_ydb_scripting.py::TestExecuteScriptWithParamsFromStdin::test_batching_full_tsv[stream] \ No newline at end of file
diff --git a/.github/config/muted_test.txt b/.github/config/muted_test.txt
index 7fff896c88..fab64b6a48 100644
--- a/.github/config/muted_test.txt
+++ b/.github/config/muted_test.txt
@@ -8,6 +8,7 @@ ydb-core-blobstorage-ut_blobstorage/CountingEvents::Get_Mirror3of4
ydb-core-blobstorage-ut_blobstorage/SpaceCheckForDiskReassign::*
ydb-core-blobstorage-ut_pdiskfit-ut/TPDiskFIT::*
ydb-core-blobstorage-ut_vdisk/TBsHuge::*
+ydb-core-blobstorage-ut_vdisk/THugeMigration::RollbackMap_HugeBlobs
ydb-core-cms-ut/TCmsTest::*
ydb-core-cms-ut_sentinel/TSentinelTests::*
ydb-core-cms-ut_sentinel/TSentinelTests::PDiskErrorState
diff --git a/.github/scripts/tests/fail-checker.py b/.github/scripts/tests/fail-checker.py
index 78ec5a25c9..3dd5d11d56 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))