Skip debugger tests on OS X for now

macos_in_ci
Tyler Goodlet 2022-10-26 12:13:53 -04:00
parent a5e3cf4ecf
commit 64819b2acb
1 changed files with 5 additions and 4 deletions

View File

@ -36,9 +36,12 @@ from conftest import repodir, _ci_env
# - recurrent root errors
if platform.system() == 'Windows':
if osname := platform.system() in (
'Windows',
'Darwin',
):
pytest.skip(
'Debugger tests have no windows support (yet)',
'Debugger tests have no {osname} support (yet)',
allow_module_level=True,
)
@ -783,8 +786,6 @@ def test_multi_nested_subactors_error_through_nurseries(
child = spawn('multi_nested_subactors_error_up_through_nurseries')
timed_out_early: bool = False
for send_char in itertools.cycle(['c', 'q']):
try:
child.expect(r"\(Pdb\+\+\)")