Skip to content

Commit

Permalink
skip suites failing es promotion (#158318,#163254,#163255,#167676)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Nov 25, 2024
1 parent da1a7c4 commit d44f70f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ async function updateRoutingAllocations(
});
}

describe('incompatible_cluster_routing_allocation', () => {
// Failing ES promotion: https://github.com/elastic/kibana/issues/158318
describe.skip('incompatible_cluster_routing_allocation', () => {
let client: ElasticsearchClient;
let root: Root;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ function createRoot({ logFileName, hosts }: RootConfig) {
});
}

describe('migration v2', () => {
// Failing ES promotion: https://github.com/elastic/kibana/issues/167676
describe.skip('migration v2', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
const migratedIndexAlias = `.kibana_${pkg.version}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ import { getFips } from 'crypto';

const logFilePath = join(__dirname, 'read_batch_size.log');

describe('migration v2 - read batch size', () => {
// Failing ES promotion: https://github.com/elastic/kibana/issues/163254
// Failing ES promotion: https://github.com/elastic/kibana/issues/163255
describe.skip('migration v2 - read batch size', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
let logs: string;
Expand Down

0 comments on commit d44f70f

Please sign in to comment.