diff --git a/muted-tests.yml b/muted-tests.yml index 7226e00c83c18..5d1a9dc633976 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -307,24 +307,9 @@ tests: - class: org.elasticsearch.xpack.transform.integration.TransformCrossProjectIT method: testUpdateTransformWithProjectRouting issue: https://github.com/elastic/elasticsearch/issues/147534 -- class: org.elasticsearch.upgrades.DataStreamsUpgradeIT - method: testDataStreamValidationDoesNotBreakUpgrade - issue: https://github.com/elastic/elasticsearch/issues/153413 -- class: org.elasticsearch.upgrades.DataStreamsUpgradeIT - method: testDataStreams - issue: https://github.com/elastic/elasticsearch/issues/153414 -- class: org.elasticsearch.upgrades.DataStreamsUpgradeIT - method: testMigrateDoesNotRestartOnUpgrade - issue: https://github.com/elastic/elasticsearch/issues/153415 -- class: org.elasticsearch.upgrades.MLModelDeploymentsUpgradeIT - method: testTrainedModelDeployment - issue: https://github.com/elastic/elasticsearch/issues/153416 - class: org.elasticsearch.upgrades.IndexingIT method: testIndexing issue: https://github.com/elastic/elasticsearch/issues/140728 -- class: org.elasticsearch.upgrades.MlAssignmentPlannerUpgradeIT - method: testMlAssignmentPlannerUpgrade - issue: https://github.com/elastic/elasticsearch/issues/153417 - class: org.elasticsearch.xpack.transform.checkpoint.TransformGetCheckpointIT method: testGetCheckpointTimeoutExceeded issue: https://github.com/elastic/elasticsearch/issues/150934 @@ -397,9 +382,6 @@ tests: - class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT method: test {feature:BASELINE} issue: https://github.com/elastic/elasticsearch/issues/154058 -- class: org.elasticsearch.upgrades.DataStreamsUpgradeIT - method: testUpgradeDataStream - issue: https://github.com/elastic/elasticsearch/issues/154593 - class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT method: test {p0=indices.sort/30_multi_value/Index Sort with doc_values multi_value false - integer} issue: https://github.com/elastic/elasticsearch/issues/154602 diff --git a/x-pack/qa/rolling-upgrade-legacy/build.gradle b/x-pack/qa/rolling-upgrade-legacy/build.gradle index 036cc5091a962..e0793eb756c99 100644 --- a/x-pack/qa/rolling-upgrade-legacy/build.gradle +++ b/x-pack/qa/rolling-upgrade-legacy/build.gradle @@ -13,6 +13,10 @@ apply plugin: 'elasticsearch.standalone-rest-test' apply plugin: 'elasticsearch.bwc-test' apply plugin: 'elasticsearch.rest-resources' +// Each suite is parameterized over the upgrade phases and an earlier phase sets up the cluster state a later phase asserts on, +// so a phase that passed must still run when a later phase is retried. +smartRetry.pruneIndividualTests.set(false) + dependencies { testImplementation testArtifact(project(':server')) testImplementation testArtifact(project(xpackModule('core')))