Skip to content

Commit

Permalink
[7.x] [ML] Functional tests - skip regression and classification tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pheyos committed Aug 17, 2020
1 parent 0ae7faf commit 627b457
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default function ({ getService }: FtrProviderContext) {
const ml = getService('ml');
const editedDescription = 'Edited description';

describe('classification creation', function () {
// failing test due to backend issue, see #75095
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 @@ -13,7 +13,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');

describe('jobs cloning supported by UI form', function () {
// failing test due to backend issue, see #75095
describe.skip('jobs cloning supported by UI form', function () {
const testDataList: Array<{
suiteTitle: string;
archive: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default function ({ getService }: FtrProviderContext) {
const ml = getService('ml');
const editedDescription = 'Edited description';

describe('regression creation', function () {
// failing test due to backend issue, see #75095
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 627b457

Please sign in to comment.