Skip to content

Commit

Permalink
fix: removes process-isolation from --help output
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jan 25, 2024
1 parent cb1735f commit 7a46514
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/Plugins/Help.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public function handleArguments(array $arguments): array

assert(is_string($argument));

if (trim($argument) === '--process-isolation') {
continue;
}

View::render('components.two-column-detail', [
'left' => $this->colorizeOptions($argument),
'right' => preg_replace(['/</', '/>/'], ['[', ']'], $description),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7a46514

Please sign in to comment.