Skip to content

Commit

Permalink
[7.5] [ML] Skip advanced wizard categorization test (#50141) (#50156)
Browse files Browse the repository at this point in the history
* [ML] Skip advanced wizard categorization test (#50141)
* Re-enable other advanced tests
  • Loading branch information
pheyos authored Nov 13, 2019
1 parent e2b6ca7 commit 34c9548
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ export default function({ getService }: FtrProviderContext) {
},
},
{
// TODO: fix and re-enable the categorization test as soon as Kibana and ES are in sync again
skipTest: true,
suiteTitle: 'with categorization detector and default datafeed settings',
jobSource: 'ecommerce',
jobId: `ec_advanced_2_${Date.now()}`,
Expand Down Expand Up @@ -274,8 +276,7 @@ export default function({ getService }: FtrProviderContext) {
},
];

// failing test in 7.5, see #50010
describe.skip('advanced job', function() {
describe('advanced job', function() {
this.tags(['smoke', 'mlqa']);
before(async () => {
await esArchiver.load('ml/ecommerce');
Expand All @@ -286,7 +287,9 @@ export default function({ getService }: FtrProviderContext) {
await ml.api.cleanMlIndices();
});

for (const testData of testDataList) {
for (const testData of testDataList.filter(td => {
return td.skipTest !== true;
})) {
describe(`${testData.suiteTitle}`, function() {
it('job creation loads the job management page', async () => {
await ml.navigation.navigateToMl();
Expand Down

0 comments on commit 34c9548

Please sign in to comment.