-
Notifications
You must be signed in to change notification settings - Fork 906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
skip tests on macos because multiprocess
default switch to spawn
since Python 3.8
#3705
Conversation
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
multiprocess
default switch to spawn
since Python 3.8
Signed-off-by: Nok Lam Chan <nok.lam.chan@quantumblack.com>
Tested on my side (MacOS):
|
@ElenaKhaustova That's expected and not caused by this PR, I think @AhdraMeraliQB has a PR on it. tagging @merelcht to review this since we deal with the multiprocessing thing recently. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥲 So does this actually mean that the parallel runner is broken?
@merelcht not completely, at least pipeline are runnable, but it seems to break hooks at least (which is still quite bad). I have open a draft PR to add some documentation about the use of |
I do not think I had it before - just checked that it came with recent |
We had a discussion and it's properly best to start with fixing kedro-org/kedro-viz#1801. The problem is not Kedro specific, but rather "thread"/"process" safety in Python. There are idea to provide some same hook class (or like AbstractDataset), it's unclear how it would look like so we will tackle the viz one as an example and see how it goes. On the other hand, |
Description
Fix #3702
Development notes
After long investigation, I found that the issue is closely related to #3704. This wasn't a problem because in older version, MacOS was default with "fork" process until Python 3.8.
This is not ideal as there are no way to run these tests locally as most core team member is using MacOS, alternative is debug this on GitPod as a temporary solution. However, there are no way to make these tests work unless there is a clever way to make mocking work with multi-process. I spend an hour trying and cannot find anything, so I stopped here until we prioritise this.
Tests passed as expected because I simply skip the test now.
Developer Certificate of Origin
We need all contributions to comply with the Developer Certificate of Origin (DCO). All commits must be signed off by including a
Signed-off-by
line in the commit message. See our wiki for guidance.If your PR is blocked due to unsigned commits, then you must follow the instructions under "Rebase the branch" on the GitHub Checks page for your PR. This will retroactively add the sign-off to all unsigned commits and allow the DCO check to pass.
Checklist
RELEASE.md
file