Skip to content

Commit a0e4235

Browse files
committed
fix: change Python 3.14.0b1/2 xfail tests to non-strict
1 parent 950c15c commit a0e4235

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_methods_and_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def test_property_rvalue_policy():
309309
sys.version_info == (3, 14, 0, "beta", 1)
310310
or sys.version_info == (3, 14, 0, "beta", 2),
311311
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
312-
strict=True,
312+
strict=False,
313313
)
314314
def test_dynamic_attributes():
315315
instance = m.DynamicClass()

tests/test_pickling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_roundtrip(cls_name):
7272
sys.version_info == (3, 14, 0, "beta", 1)
7373
or sys.version_info == (3, 14, 0, "beta", 2),
7474
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
75-
strict=True,
75+
strict=False,
7676
),
7777
),
7878
"PickleableWithDictNew",

0 commit comments

Comments
 (0)