From a09b623d3eb223c375b08b605a3b14e932f95f9a Mon Sep 17 00:00:00 2001 From: bingwang Date: Tue, 1 Sep 2020 06:06:25 -0700 Subject: [PATCH] Update test_posttest to ignore sanity_check and LogAnalyzer Sanity_check and LogAnalyzer are ignored for posttest --- tests/test_posttest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_posttest.py b/tests/test_posttest.py index 6d1b676bc20..2f1bb07a7e6 100644 --- a/tests/test_posttest.py +++ b/tests/test_posttest.py @@ -6,7 +6,9 @@ pytestmark = [ pytest.mark.posttest, - pytest.mark.topology('util') + pytest.mark.topology('util'), + pytest.mark.sanity_check(skip_sanity=True), + pytest.mark.disable_loganalyzer ]