Silent crash on GitHub CI that I don't know how to start debugging #5696
Unanswered
maartenflippo
asked this question in
Questions
Replies: 1 comment
-
|
Hmm, I am unsure what the solution is here. It's surprising that it crashes in just 2s, that seems extremely fast, like an error during import? If you don't use PyO3's |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I help maintain a constraint solver implemented in Rust with a Python interface through PyO3. I wanted to make the python interface stateful, but our solver does not implement
Send. Hence, I annotated ourpyclasswithunsendable. Since that change, our CI fails on Windows, but pytest contains no output (see the action here: https://github.com/ConSol-Lab/Pumpkin/actions/runs/20173204097/job/57914338591?pr=315). On my local windows installation I cannot reproduce the failure, and clearly it is no problem for Linux or Mac.My question now is, is there anybody with an idea how to start debugging this problem? At the moment I do not even know where to start with the limited amount of information I have. Presumably, it has something to do with
unsendable, which I know may crash under certain circumstances, but I would expect some output at least.Beta Was this translation helpful? Give feedback.
All reactions