mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip flakey blackout tests on windows
This commit is contained in:
parent
f14d79af73
commit
ce57b8b62d
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue