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 ce20c21 commit 77f8b6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 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 @@ -600,7 +600,9 @@ def move_finished():
return True

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 77f8b6a

Please sign in to comment.