Replies: 2 comments 3 replies
-
pytest itself has exit codes between 0 and 5 - its unclear where you value is from |
Beta Was this translation helpful? Give feedback.
-
The culprit here won't be in pytest, but in either an extension module with native code (e.g. C/C++) triggering a segfault on exit, or possibly something in CPython itself. The first thing I'd do is running If that doesn't tell you enough, you'd need to get a Python debug build (ideally configured with With that, you could then get a C/C++ stacktrace of what's going on, with something like |
Beta Was this translation helpful? Give feedback.
-
I'm trying to inspect pyo3 CI build failures stemming from 3.14 (both regular and free-threaded versions) on Ubuntu, macOS, and Windows. The failure stems from this section:
Output:
Beta Was this translation helpful? Give feedback.
All reactions