Skip to content

Commit

Permalink
Merge pull request #25309 from rjobanp/disable-mysql-load-feature-ben…
Browse files Browse the repository at this point in the history
…chmark

Disable spuriously failing MySqlInitialLoad feature-benchmark scenario
  • Loading branch information
rjobanp authored Feb 16, 2024
2 parents b5be813 + 9b7df66 commit 616af5d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/feature-benchmark/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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]

Expand Down

0 comments on commit 616af5d

Please sign in to comment.