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: mark unstable topic deletion tests ok_to_fail #8089

Merged
merged 1 commit into from
Jan 6, 2023
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
4 changes: 3 additions & 1 deletion tests/rptest/tests/topic_delete_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import json

from ducktape.utils.util import wait_until
from ducktape.mark import parametrize
from ducktape.mark import parametrize, ok_to_fail
from requests.exceptions import HTTPError

from rptest.services.cluster import cluster
Expand Down Expand Up @@ -211,6 +211,7 @@ def _populate_topic(self, topic_name):
self.si_settings.cloud_storage_bucket, topic=topic_name)
assert sum(1 for _ in objects) > 0

@ok_to_fail # https://github.com/redpanda-data/redpanda/issues/8071
@cluster(
num_nodes=3,
log_allow_list=[
Expand Down Expand Up @@ -292,6 +293,7 @@ def _topic_remote_deleted(self, topic_name: str):

return empty

@ok_to_fail # https://github.com/redpanda-data/redpanda/issues/8046
@cluster(num_nodes=3)
@parametrize(disable_delete=False)
@parametrize(disable_delete=True)
Expand Down