Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: marked flaky librdkafka tests ok to fail #7149

Merged
merged 1 commit into from
Nov 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/rptest/tests/librdkafka_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import os

from rptest.services.cluster import cluster
from ducktape.mark import matrix
from ducktape.mark import matrix, ok_to_fail

from rptest.services.librdkafka_test_case import LibrdkafkaTestcase
from rptest.tests.redpanda_test import RedpandaTest
Expand Down Expand Up @@ -73,9 +73,10 @@ def __init__(self, context):
"default_topic_partitions": 4
})

@ok_to_fail #
@cluster(num_nodes=4)
@matrix(test_num=tests_to_run())
@skip_debug_mode
@skip_debug_mode # https://github.com/redpanda-data/redpanda/issues/7148
def test_librdkafka(self, test_num):
tc = LibrdkafkaTestcase(self.test_context, self.redpanda, test_num)
tc.start()
Expand Down