mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
fix: removes process-isolation from --help output
This commit is contained in:
@ -61,6 +61,10 @@ final class Help implements HandlesArguments
|
||||
|
||||
assert(is_string($argument));
|
||||
|
||||
if (trim($argument) === '--process-isolation') {
|
||||
continue;
|
||||
}
|
||||
|
||||
View::render('components.two-column-detail', [
|
||||
'left' => $this->colorizeOptions($argument),
|
||||
'right' => preg_replace(['/</', '/>/'], ['[', ']'], $description),
|
||||
|
||||
@ -38,7 +38,6 @@
|
||||
EXECUTION OPTIONS:
|
||||
--parallel ........................................... Run tests in parallel
|
||||
--update-snapshots Update snapshots for tests using the "toMatchSnapshot" expectation
|
||||
--process-isolation ................ Run each test in a separate PHP process
|
||||
--globals-backup ................. Backup and restore $GLOBALS for each test
|
||||
--static-backup ......... Backup and restore static properties for each test
|
||||
--strict-coverage ................... Be strict about code coverage metadata
|
||||
|
||||
Reference in New Issue
Block a user