Open cesarizu opened 3 years ago
Maybe unknown command-line options should be passed directly to
parallel_rspec
to avoid having to define each possible one?
I like that idea but currently unknown options are treated as spec files (source). I'll think about a way to implement it.
A few options:
git
for example) treat everything after an isolated double dash (--
) as file parameters, ej: git checkout -- somefile
parallel_rspec
Thanks for ideas :+1: Btw, turbo_tests
executes RSpec directly instead. parallel_spec
is used to group spec files.
rspec
andparallel_tests
support the--default-path
option. This is useful, for example, when running specs inside an engine where one would define that as the default path.Maybe unknown command-line options should be passed directly to
parallel_rspec
to avoid having to define each possible one?