Skip to content

Commit 4268eca

Browse files
committed
test: ignore GC test for 1.11
1 parent a5aca51 commit 4268eca

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pytest/test_all.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ def test_issue_433():
9494
def test_julia_gc():
9595
from juliacall import Main as jl
9696

97+
if jl.seval("VERSION >= v\"1.11.0-\""):
98+
pytest.skip("Test not yet supported on Julia 1.11+")
99+
97100
# We make a bunch of python objects with no reference to them,
98101
# then call GC to try to finalize them.
99102
# We want to make sure we don't segfault.

0 commit comments

Comments
 (0)