Skip to content

Commit

Permalink
Remove "Running with seed" from CLI report (#6088)
Browse files Browse the repository at this point in the history
  • Loading branch information
eXorus committed Jan 17, 2021
1 parent 8d6b2dc commit 3e41a0c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Codeception/Command/Run.php
Expand Up @@ -271,9 +271,12 @@ public function execute(InputInterface $input, OutputInterface $output)
$this->output->writeln(
Codecept::versionString() . "\nPowered by " . \PHPUnit\Runner\Version::getVersionString()
);
$this->output->writeln(
"Running with seed: " . $this->options['seed'] . "\n"
);

if ($this->options['seed']) {
$this->output->writeln(
"Running with seed: <info>" . $this->options['seed'] . "</info>\n"
);
}
}
if ($this->options['debug']) {
$this->output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE);
Expand Down

0 comments on commit 3e41a0c

Please sign in to comment.