We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c01ff3 commit 9e9843dCopy full SHA for 9e9843d
1 file changed
tests/test_with_catch/test_subinterpreter.cpp
@@ -94,9 +94,7 @@ TEST_CASE("Single Subinterpreter") {
94
// "Move Subinterpreter" test is disabled on free-threaded Python 3.14+ due to a hang
95
// in Py_EndInterpreter() when the subinterpreter is destroyed from a different thread
96
// than it was created on. See: https://github.com/pybind/pybind11/pull/5933
97
-// EXPERIMENT: Temporarily re-enable to test CI log buffering fix - REVERT THIS
98
-# if PY_VERSION_HEX >= 0x030D0000 \
99
- && !(0 && PY_VERSION_HEX >= 0x030E0000 && defined(Py_GIL_DISABLED))
+# if PY_VERSION_HEX >= 0x030D0000 && !(PY_VERSION_HEX >= 0x030E0000 && defined(Py_GIL_DISABLED))
100
TEST_CASE("Move Subinterpreter") {
101
std::unique_ptr<py::subinterpreter> sub(new py::subinterpreter(py::subinterpreter::create()));
102
0 commit comments