From 9b7df667deeddf6ebcca3ae44ff48cddd524ce2f Mon Sep 17 00:00:00 2001 From: Roshan Jobanputra Date: Thu, 15 Feb 2024 21:39:00 -0500 Subject: [PATCH] Disable spuriously failing MySqlInitialLoad feature-benchmark scenario --- test/feature-benchmark/mzcompose.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/feature-benchmark/mzcompose.py b/test/feature-benchmark/mzcompose.py index 4ef110a098d80..7dad33203d2b9 100644 --- a/test/feature-benchmark/mzcompose.py +++ b/test/feature-benchmark/mzcompose.py @@ -39,6 +39,7 @@ from materialize.feature_benchmark.measurement import MeasurementType from materialize.feature_benchmark.scenarios.benchmark_main import * # noqa: F401 F403 from materialize.feature_benchmark.scenarios.benchmark_main import ( + MySqlInitialLoad, Scenario, ) from materialize.feature_benchmark.scenarios.concurrency import * # noqa: F401 F403 @@ -388,6 +389,9 @@ def workflow_default(c: Composition, parser: WorkflowArgumentParser) -> None: [s for s in all_subclasses(root_scenario) if not s.__subclasses__()], key=repr, ) + # TODO: Re-enable -- was failing spuriously when testing release qual: + # https://github.com/MaterializeInc/materialize/issues/25323 + selected_scenarios.remove(MySqlInitialLoad) else: selected_scenarios = [root_scenario]