mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-20 14:59:27 +00:00
test: run pytest under Python devmode (#5715)
* test: run pytest under Python devmode * test: skip segfault bug with 3.14.0b1/2 * test: skip segfault bug with 3.14.0b1/2 * test: unset CMAKE_BUILD_PARALLEL_LEVEL
This commit is contained in:
@@ -68,11 +68,9 @@ def test_roundtrip(cls_name):
|
||||
[
|
||||
pytest.param(
|
||||
"PickleableWithDict",
|
||||
marks=pytest.mark.xfail(
|
||||
sys.version_info == (3, 14, 0, "beta", 1)
|
||||
or sys.version_info == (3, 14, 0, "beta", 2),
|
||||
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
|
||||
strict=True,
|
||||
marks=pytest.mark.skipif(
|
||||
sys.version_info in ((3, 14, 0, "beta", 1), (3, 14, 0, "beta", 2)),
|
||||
reason="3.14.0b1/2 managed dict bug: https://github.com/python/cpython/issues/133912",
|
||||
),
|
||||
),
|
||||
"PickleableWithDictNew",
|
||||
|
||||
Reference in New Issue
Block a user