From c7c5d82a98b8cad4e05d6f107053116fca175ab0 Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Sun, 20 Oct 2024 23:40:03 -0700 Subject: [PATCH] [Detection Engine][Tests] Skip flakey ML tests - need to follow up (#196990) ## Summary The periodic pipeline ML tests have been flaking. Confirmed flake, not regression. Skipping tests to stabilize pipeline. We will need to do a quick follow up to re-enable tests. --- .../execution_logic/machine_learning.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/trial_license_complete_tier/execution_logic/machine_learning.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/trial_license_complete_tier/execution_logic/machine_learning.ts index 2d63847ca0db7..2edd2ba9a8cbc 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/trial_license_complete_tier/execution_logic/machine_learning.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/trial_license_complete_tier/execution_logic/machine_learning.ts @@ -184,7 +184,7 @@ export default ({ getService }: FtrProviderContext) => { ); }); - it('classifies ml job missing errors as user errors', async () => { + it('@skipInServerlessMKI classifies ml job missing errors as user errors', async () => { await getMetricsRequest(request, true); const badRule: MachineLearningRuleCreateProps = { ...rule, @@ -333,7 +333,7 @@ export default ({ getService }: FtrProviderContext) => { await esArchiver.unload('x-pack/test/functional/es_archives/asset_criticality'); }); - it('should be enriched alert with criticality_level', async () => { + it('@skipInServerlessMKI should be enriched alert with criticality_level', async () => { const { previewId } = await previewRule({ supertest, rule }); const previewAlerts = await getPreviewAlerts({ es, previewId });