-
-
Notifications
You must be signed in to change notification settings - Fork 390
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
Use process pool for test runner (0.12.x) #4679
Use process pool for test runner (0.12.x) #4679
Conversation
@@ -161,9 +161,13 @@ object Ctx { | |||
* terminal prompt to display what this future is currently computing. | |||
* @param t The body of the async future | |||
*/ | |||
def async[T](dest: os.Path, key: String, message: String)(t: => T)(implicit | |||
def async[T](dest: os.Path, key: String, message: String, t: Logger => T)(implicit |
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.
This change is needed because scala 2.13 does not happy with (dest: os.Path, key: String, message: String(t: Logger => T)
signature
a1b6967
to
2c011f5
Compare
aba1bf4
to
4aa3129
Compare
cef2744
to
95e5ff4
Compare
Tried this out locally, seems to speed up |
@lihaoyi it seems like the CI is quite flaky, could you rerun the fallen ones? |
Yep will do |
Looks good to me, the remaining flakiness is probably #4556 |
@HollandDM can send me your bank details to [email protected] for the bounty |
@lihaoyi I've update my profile to show my email, you can use that for verification. |
ported for 0.12.x from #4614