forked from goodboy/tractor
1
0
Fork 0

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 import time
from os import path from os import path
import platform
import pytest import pytest
import pexpect import pexpect
@ -25,6 +26,13 @@ from conftest import repodir
# - recurrent root errors # - recurrent root errors
if platform.system() == 'Windows':
pytest.skip(
'Debugger tests have no windows support (yet)',
allow_module_level=True,
)
def examples_dir(): def examples_dir():
"""Return the abspath to the examples directory. """Return the abspath to the examples directory.
""" """