From ce57b8b62dbf5394429c2b53de331bc5f1c01f45 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Fri, 29 Dec 2023 20:42:59 -0700 Subject: [PATCH] Skip flakey blackout tests on windows --- tests/pytests/scenarios/blackout/test_minion_blackout.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/pytests/scenarios/blackout/test_minion_blackout.py b/tests/pytests/scenarios/blackout/test_minion_blackout.py index fcc288edfb7..581ad2b135b 100644 --- a/tests/pytests/scenarios/blackout/test_minion_blackout.py +++ b/tests/pytests/scenarios/blackout/test_minion_blackout.py @@ -11,7 +11,11 @@ log = logging.getLogger(__name__) def _check_skip(grains): - if grains["os"] == "Windows" and grains["osrelease"] == "2016Server": + """ + Skip on windows because these tests are flaky, we need to spend some time to + debug why. + """ + if grains["os"] == "Windows": return True return False