From 742bc1bd1150bf6dab7416fd6ff8082d3278cd36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Botond=20D=C3=A9nes?= Date: Fri, 19 Jan 2024 09:08:16 -0500 Subject: [PATCH] test/topology_experimental_raft: test_tablet.py: disable flaky test Skip test_tablet_missing_data_repair, it is failing a lot breaking promotion and CI. Can't revert because the PR introducing it was already piled on. So disable while investigated. Refs: #16859 Closes scylladb/scylladb#16879 --- test/topology_experimental_raft/test_tablets.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/topology_experimental_raft/test_tablets.py b/test/topology_experimental_raft/test_tablets.py index 292febeef9..6dde411306 100644 --- a/test/topology_experimental_raft/test_tablets.py +++ b/test/topology_experimental_raft/test_tablets.py @@ -411,6 +411,7 @@ async def test_tablet_repair(manager: ManagerClient): await cql.run_async("DROP KEYSPACE test;") +@pytest.mark.skip(reason="failing a lot, see https://github.com/scylladb/scylladb/issues/16859") @pytest.mark.repair @pytest.mark.asyncio async def test_tablet_missing_data_repair(manager: ManagerClient):