10000 Skip ipdb integration on arm ... there's something bad going on there… · lorenzncode/python-hunter@258e117 · GitHub
[go: up one dir, main page]

Skip to content

Commit 258e117

Browse files
committed
Skip ipdb integration on arm ... there's something bad going on there not worth my time.
1 parent a613a65 commit 258e117

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_integration.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,10 @@ def test_backlog_subprocess(LineMatcher):
770770

771771

772772
@pytest.mark.skipif(sys.platform == 'win32' and sys.version_info[0] == 2, reason='broken on windows 2.7')
773-
@pytest.mark.parametrize('pdb', ['pdb', 'ipdb'])
773+
@pytest.mark.parametrize('pdb', [
774+
'pdb',
775+
pytest.param('ipdb', marks=pytest.mark.skipif('platform.processor()=="aarch64"')),
776+
])
774777
@pytest.mark.parametrize('mode', ['postmortem', 'settrace', 'debugger'])
775778
def test_pdb(LineMatcher, pdb, mode):
776779
with TestProcess(sys.executable, '-msamplepdb', pdb, mode, bufsize=0, stdin=subprocess.PIPE) as target, dump_on_error(target.read):

0 commit comments

Comments
 (0)
0