Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import time
from random import randint

from ducktape.mark import matrix, parametrize
from ducktape.mark import parametrize
from ducktape.mark.resource import cluster
from ducktape.tests.test import TestContext

Expand Down Expand Up @@ -109,7 +109,7 @@ def invoke_compatibility_program(self, features):
raise

@cluster(num_nodes=7)
@matrix(broker_version=[str(DEV_BRANCH)], metadata_quorum=quorum.all_non_upgrade)
@parametrize(broker_version=str(DEV_BRANCH))

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about setting "describe-acls-supported" to false? We can still test other features for raft.

@parametrize(broker_version=str(LATEST_0_10_0))
@parametrize(broker_version=str(LATEST_0_10_1))
@parametrize(broker_version=str(LATEST_0_10_2))
Expand Down