Skip to content

Commit cd724f0

Browse files
committed
test: mark xfail to DynamicClass
1 parent a16f19f commit cd724f0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_methods_and_attributes.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,12 @@ class PythonDerivedDynamicClass(m.DynamicClass):
364364

365365
# https://foss.heptapod.net/pypy/pypy/-/issues/2447
366366
@pytest.mark.xfail("env.PYPY")
367+
@pytest.mark.xfail(
368+
sys.version_info == (3, 14, 0, "beta", 1)
369+
or sys.version_info == (3, 14, 0, "beta", 2),
370+
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
371+
strict=False,
372+
)
367373
@pytest.mark.skipif("env.GRAALPY", reason="Cannot reliably trigger GC")
368374
def test_cyclic_gc():
369375
# One object references itself

0 commit comments

Comments
 (0)