Skip to content

Commit

Permalink
Skip flakey blackout tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Dec 30, 2023
1 parent f14d79a commit ce57b8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/pytests/scenarios/blackout/test_minion_blackout.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@


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

Expand Down

0 comments on commit ce57b8b

Please sign in to comment.