From f77adafa390182e5661416e4405cf70a0f9a23d5 Mon Sep 17 00:00:00 2001 From: beats-jenkins Date: Wed, 12 Dec 2018 13:28:10 +0100 Subject: [PATCH] [Auditbeat][Flaky test] Skip test_recursive as flaky Skipping this test as it was flaky several times. See https://github.com/elastic/beats/issues/7731 for report. --- auditbeat/tests/system/test_file_integrity.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auditbeat/tests/system/test_file_integrity.py b/auditbeat/tests/system/test_file_integrity.py index 51460208655b..813ae8177c58 100644 --- a/auditbeat/tests/system/test_file_integrity.py +++ b/auditbeat/tests/system/test_file_integrity.py @@ -1,4 +1,5 @@ import time +import unittest from auditbeat import * @@ -129,6 +130,7 @@ def test_non_recursive(self): # assert file inside subdir is not reported assert self.log_contains(file3) is False + @unittest.skip("Skipped as flaky: https://github.com/elastic/beats/issues/7731") def test_recursive(self): """ file_integrity monitors watched directories (recursive).