Skip to content

Commit 35d760c

Browse files
Remove an unnecessary stack overflow-generating test
1 parent b996f12 commit 35d760c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_core.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,12 @@ def test_reify_recursion_limit():
240240
sys.setrecursionlimit(r_limit)
241241

242242

243+
@pytest.mark.skip(
244+
reason=(
245+
"This will cause an unrecoverable stack overflow"
246+
" in some cases (e.g. GitHub Actions' default ubuntu-latest runners)"
247+
)
248+
)
243249
@pytest.mark.xfail(strict=True)
244250
def test_reify_recursion_limit_hash():
245251
r_limit = sys.getrecursionlimit()

0 commit comments

Comments
 (0)