Skip to content

Commit

Permalink
skip flaky suite (elastic#142102)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Sep 28, 2022
1 parent 7a12289 commit a12d25e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function ({ getService }: FtrProviderContext) {
const ml = getService('ml');
const editedDescription = 'Edited description';

describe('classification creation', function () {
// FLAKY: https://github.com/elastic/kibana/issues/142102
describe.skip('classification creation', function () {
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/bm_classification');
await ml.testResources.createIndexPatternIfNeeded('ft_bank_marketing', '@timestamp');
Expand Down Expand Up @@ -92,7 +93,8 @@ export default function ({ getService }: FtrProviderContext) {
},
];
for (const testData of testDataList) {
describe(`${testData.suiteTitle}`, function () {
// FLAKY: https://github.com/elastic/kibana/issues/142102
describe.skip(`${testData.suiteTitle}`, function () {
after(async () => {
await ml.api.deleteIndices(testData.destinationIndex);
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
Expand Down

0 comments on commit a12d25e

Please sign in to comment.