discourse/lib/autospec
Daniel Waterworth e18ce56f4b DEV: Add a new way to run specs in parallel with better output (#7778)
* DEV: Add a new way to run specs in parallel with better output

This commit:

 1. adds a new executable, `bin/interleaved_rspec` which works much like
    `rspec`, but runs the tests in parallel.

 2. adds a rake task, `rake interleaved:spec` which runs the whole test
    suite.

 3. makes autospec use this new wrapper by default. You can disable this
    by running `PARALLEL_SPEC=0 rake autospec`.

It works much like the `parallel_tests` gem (and relies on it), but
makes each subprocess use a machine-readable formatter and parses this
output in order to provide a better overall summary.

(It's called interleaved, because parallel was taken and naming is
hard).

* Make popen3 invocation safer

* Use FileUtils instead of shelling out

* DRY up reporter

* Moved summary logic into Reporter

* s/interleaved/turbo/g

* Move Reporter into its own file

* Moved run into its own class

* Moved Runner into its own file

* Move JsonRowsFormatter under TurboTests

* Join on threads at the end

* Acted on feedback from eviltrout
2019-06-21 10:59:01 +10:00
..
base_runner.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
formatter.rb DEV: Add a new way to run specs in parallel with better output (#7778) 2019-06-21 10:59:01 +10:00
manager.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
qunit_runner.rb DEV: autospec chrome check was failing on macOS (#7649) 2019-05-30 12:09:01 +02:00
reload_css.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
rspec_runner.rb DEV: enable frozen string literal on all files 2019-05-13 09:31:32 +08:00
simple_runner.rb DEV: Add a new way to run specs in parallel with better output (#7778) 2019-06-21 10:59:01 +10:00