Merge pull request #177 from shopware/feat/application-tests #250
php.yml
on: push
ecs
20s
phpstan
25s
unit
29s
integration
28s
application
26s
infection
1m 2s
Annotations
7 warnings
application
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
phpstan
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
unit
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
integration
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
infection:
src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
- if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) {
+ if ($this->appUrl === null && $this->appSecret === null || $this->environment === null || $this->projectDir === null) {
$io->error('Missing environment variables');
return Command::FAILURE;
}
|
infection:
src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
- if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) {
+ if (($this->appUrl === null || $this->appSecret === null) && $this->environment === null || $this->projectDir === null) {
$io->error('Missing environment variables');
return Command::FAILURE;
}
|
infection:
src/Command/ManifestGenerateCommand.php#L35
Escaped Mutant for Mutator "LogicalOr":
@@ @@
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
- if ($this->appUrl === null || $this->appSecret === null || $this->environment === null || $this->projectDir === null) {
+ if (($this->appUrl === null || $this->appSecret === null || $this->environment === null) && $this->projectDir === null) {
$io->error('Missing environment variables');
return Command::FAILURE;
}
|