From 6d124db7c96a7c2e2a180a93e46d626fc701c9fa Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 26 Jan 2023 12:02:30 -0500 Subject: [PATCH] Never run ctlc-with-intermediary-actor cases locally either --- tests/test_debugger.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/tests/test_debugger.py b/tests/test_debugger.py index dd5ab46..0793df5 100644 --- a/tests/test_debugger.py +++ b/tests/test_debugger.py @@ -165,17 +165,16 @@ def ctlc( # be 3.10+ mega-asap. pytest.skip('Py3.9 and `pdbpp` son no bueno..') - if ci_env: - node = request.node - markers = node.own_markers - for mark in markers: - if mark.name == 'has_nested_actors': - pytest.skip( - f'Test for {node} uses nested actors and fails in CI\n' - f'The test seems to run fine locally but until we solve' - 'this issue this CI test will be xfail:\n' - 'https://github.com/goodboy/tractor/issues/320' - ) + node = request.node + markers = node.own_markers + for mark in markers: + if mark.name == 'has_nested_actors': + pytest.skip( + f'Test {node} has nested actors and fails with Ctrl-C.\n' + f'The test can sometimes run fine locally but until' + ' we solve' 'this issue this CI test will be xfail:\n' + 'https://github.com/goodboy/tractor/issues/320' + ) if use_ctlc: # XXX: disable pygments highlighting for auto-tests