diff --git a/src/Codeception/Command/Run.php b/src/Codeception/Command/Run.php index acd98cddb0..e537d2b543 100644 --- a/src/Codeception/Command/Run.php +++ b/src/Codeception/Command/Run.php @@ -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: " . $this->options['seed'] . "\n" + ); + } } if ($this->options['debug']) { $this->output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE);