Skip debugger tests on windows at module level

round_2_ci_windows
Tyler Goodlet 2021-07-06 07:56:38 -04:00
parent 2513c652c1
commit 929b6dcc83
1 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,7 @@ TODO: None of these tests have been run successfully on windows yet.
"""
import time
from os import path
import platform
import pytest
import pexpect
@ -25,6 +26,13 @@ from conftest import repodir
# - recurrent root errors
if platform.system() == 'Windows':
pytest.skip(
'Debugger tests have no windows support (yet)',
allow_module_level=True,
)
def examples_dir():
"""Return the abspath to the examples directory.
"""