Skip flakey blackout tests on windows

This commit is contained in:
Daniel A. Wozniak 2023-12-29 20:42:59 -07:00 committed by Daniel Wozniak
parent f14d79af73
commit ce57b8b62d

View file

@ -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