Skip to content

Commit

Permalink
Merge pull request #17010 from redpanda-data/rpdevmp/HTT-fmc-check-990
Browse files Browse the repository at this point in the history
Check cloud type and add do not run the test if FMC
  • Loading branch information
rpdevmp authored Mar 15, 2024
2 parents f7c03fd + 06b7d5e commit 82b6f2e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/rptest/redpanda_cloud_tests/high_throughput_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from rptest.services.openmessaging_benchmark_configs import \
OMBSampleConfigurations
from rptest.services.producer_swarm import ProducerSwarm
from rptest.services.redpanda_cloud import CLOUD_TYPE_FMC
from rptest.services.redpanda_cloud import CloudTierName, get_config_profile_name, PROVIDER_AWS
from rptest.services.redpanda import (RESTART_LOG_ALLOW_LIST, MetricsEndpoint,
RedpandaService, SISettings,
Expand Down Expand Up @@ -807,6 +808,11 @@ def test_disrupt_cloud_storage(self):
cloudv2 API to create/update buckets and its
properties/policies
"""
if self.redpanda.cloud_type == CLOUD_TYPE_FMC:
self.logger.warn(
'This test is designed for BYOC only, this is FMC')
return

# create default topics
self._create_default_topics()

Expand Down

0 comments on commit 82b6f2e

Please sign in to comment.