-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Allow parallel execution of child nodes if only read locks are acquired #2423
Comments
SGTM. Would you like to send a PR? |
is this still actively being worked on? |
@XN137 go ahead, I still have some stuff to finish over at https://github.com/spockframework/spock before I get to this |
leonard84
added a commit
to leonard84/junit5
that referenced
this issue
Jan 4, 2021
7 tasks
Closed
1 task
runningcode
pushed a commit
to runningcode/junit5
that referenced
this issue
Feb 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, child nodes are forced to
SAME_THREAD
execution if the parent has any locks.If the parent only has
READ
locks, then it would be valid for the child nodes to execute concurrently. This would also alleviate the issues of #2038 and we partly have this logic already for the isolated execution of #2142Deliverables
SAME_THREAD
execution if onlyREAD
locks are acquiredThe text was updated successfully, but these errors were encountered: