We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0776969 commit 7b0db63Copy full SHA for 7b0db63
src/Codeception/Command/Run.php
@@ -271,9 +271,12 @@ public function execute(InputInterface $input, OutputInterface $output)
271
$this->output->writeln(
272
Codecept::versionString() . "\nPowered by " . \PHPUnit\Runner\Version::getVersionString()
273
);
274
- $this->output->writeln(
275
- "Running with seed: " . $this->options['seed'] . "\n"
276
- );
+
+ if ($this->options['seed']) {
+ $this->output->writeln(
277
+ "Running with seed: <info>" . $this->options['seed'] . "</info>\n"
278
+ );
279
+ }
280
}
281
if ($this->options['debug']) {
282
$this->output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE);
0 commit comments