serpapi / turbo_tests

Run RSpec tests on multiple cores. Like parallel_tests but with incremental summarized output. Originally extracted from the Discourse and Rubygems source code.
https://rubygems.org/gems/turbo_tests
MIT License
173 stars 25 forks source link

Try to replace subprocesses with DRb similar to Rails #19

Open ilyazub opened 2 years ago

ilyazub commented 2 years ago

Rails uses DRb when tests are parallelized with processes. Ref.

Try to replace Open3.popen3 with DRb and share results here. Probably it'll require a complete rewrite but there's not that much code.

I'm most interested in comparing file-based IPC & JSON-formatted messages with what DRb provides.