Skip to content

Commit

Permalink
[7.x] [ML] Functional tests - disable flaky regression and classifica…
Browse files Browse the repository at this point in the history
…tion creation test
  • Loading branch information
pheyos committed Jun 5, 2020
1 parent 69e0c60 commit f094dd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');

describe('classification creation', function () {
// flaky test, see https://github.com/elastic/kibana/issues/68356
describe.skip('classification creation', function () {
before(async () => {
await esArchiver.loadIfNeeded('ml/bm_classification');
await ml.testResources.createIndexPatternIfNeeded('ft_bank_marketing', '@timestamp');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');

describe('regression creation', function () {
// flaky test, see https://github.com/elastic/kibana/issues/68352
describe.skip('regression creation', function () {
before(async () => {
await esArchiver.loadIfNeeded('ml/egs_regression');
await ml.testResources.createIndexPatternIfNeeded('ft_egs_regression', '@timestamp');
Expand Down

0 comments on commit f094dd1

Please sign in to comment.