This will result in the following output (you can Ctrl+C once you see it):
Command: '$PWD/vendor/bin/paratest' '-p=half'
Showing that it passed in -p=half to paratest, however the correct format is -p half (short flag, with the space) or--processes=half (full name with the =) — this results in the argument being ignored and it always uses the default of auto which means that it uses all available cores.
My configuration
Steps to reproduce:
Result:
This will result in the following output (you can Ctrl+C once you see it):
Showing that it passed in
-p=half
toparatest
, however the correct format is-p half
(short flag, with the space) or--processes=half
(full name with the=
) — this results in the argument being ignored and it always uses the default ofauto
which means that it uses all available cores.