Skip debugger tests on windows at module level
parent
2513c652c1
commit
929b6dcc83
|
@ -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.
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue