From 64819b2acb5645e310f95bdc2212f358131d1280 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 26 Oct 2022 12:13:53 -0400 Subject: [PATCH] Skip debugger tests on OS X for now --- tests/test_debugger.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/test_debugger.py b/tests/test_debugger.py index dd5ab46..34a32bf 100644 --- a/tests/test_debugger.py +++ b/tests/test_debugger.py @@ -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\+\+\)")