Skip to content

Commit

Permalink
tests: disable test_cancellations_interrupted_with_restarts in debug
Browse files Browse the repository at this point in the history
Disabled `test_cancellations_interrupted_with_restarts` test running in
debug mode.

Fixes: redpanda-data#10497

Signed-off-by: Michal Maslanka <michal@redpanda.com>
  • Loading branch information
mmaslankaprv committed Jun 18, 2023
1 parent 67dab5e commit 010888d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/rptest/tests/partition_move_interruption_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from rptest.services.admin import Admin
from rptest.tests.partition_movement import PartitionMovementMixin
from rptest.services.redpanda import RESTART_LOG_ALLOW_LIST, SISettings, MetricsEndpoint
from rptest.utils.mode_checks import cleanup_on_early_exit
from rptest.utils.mode_checks import cleanup_on_early_exit, skip_debug_mode

NO_RECOVERY = "no_recovery"
RESTART_RECOVERY = "restart_recovery"
Expand Down Expand Up @@ -601,6 +601,8 @@ def move_finished():

wait_until(move_finished, 30, backoff_sec=1)

#TODO: investigate slow startups in debug mode
@skip_debug_mode
@cluster(num_nodes=7, log_allow_list=RESTART_LOG_ALLOW_LIST)
@matrix(replication_factor=[1, 3])
def test_cancellations_interrupted_with_restarts(self, replication_factor):
Expand Down

0 comments on commit 010888d

Please sign in to comment.