Skip to content

Commit

Permalink
Remove an unnecessary stack overflow-generating test
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Jan 19, 2022
1 parent b996f12 commit 35d760c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ def test_reify_recursion_limit():
sys.setrecursionlimit(r_limit)


@pytest.mark.skip(
reason=(
"This will cause an unrecoverable stack overflow"
" in some cases (e.g. GitHub Actions' default ubuntu-latest runners)"
)
)
@pytest.mark.xfail(strict=True)
def test_reify_recursion_limit_hash():
r_limit = sys.getrecursionlimit()
Expand Down

0 comments on commit 35d760c

Please sign in to comment.