From 29d5d16b4177dbce452cb1a4eab4fb5a231bddd7 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 11 Apr 2022 16:03:06 +0100 Subject: [PATCH] tests: ok_to_fail TopicRecoveryTest unreliable cases Related: https://github.com/redpanda-data/redpanda/issues/4202 --- tests/rptest/tests/topic_recovery_test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/rptest/tests/topic_recovery_test.py b/tests/rptest/tests/topic_recovery_test.py index f880d60e8c27..845055c2dff8 100644 --- a/tests/rptest/tests/topic_recovery_test.py +++ b/tests/rptest/tests/topic_recovery_test.py @@ -7,7 +7,7 @@ # https://github.com/redpanda-data/redpanda/blob/master/licenses/rcl.md from rptest.services.cluster import cluster -from ducktape.mark import ignore +from ducktape.mark import ok_to_fail from rptest.tests.redpanda_test import RedpandaTest from rptest.archival.s3_client import S3Client from rptest.services.redpanda import RedpandaService @@ -1196,6 +1196,7 @@ def test_missing_segment(self): self.s3_bucket, self.logger) self.do_run(test_case) + @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/4202 @cluster(num_nodes=3, log_allow_list=TRANSIENT_ERRORS) def test_fast1(self): """Basic recovery test. This test stresses successful recovery @@ -1209,6 +1210,7 @@ def test_fast1(self): self.s3_bucket, self.logger, topics) self.do_run(test_case) + @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/4202 @cluster(num_nodes=3, log_allow_list=TRANSIENT_ERRORS) def test_fast2(self): """Basic recovery test. This test stresses successful recovery @@ -1225,6 +1227,7 @@ def test_fast2(self): self.s3_bucket, self.logger, topics) self.do_run(test_case) + @ok_to_fail # https://github.com/redpanda-data/redpanda/issues/4202 @cluster(num_nodes=3, log_allow_list=TRANSIENT_ERRORS) def test_fast3(self): """Basic recovery test. This test stresses successful recovery