Schedule CI #233
Annotations
11 warnings
Code Coverage (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
PhpMetrics (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Infection (ubuntu-latest, 8.4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Infection (ubuntu-latest, 8.4):
src/Tools/Process/Execution/MultiProcessesExecution.php#L46
Escaped Mutant for Mutator "CastString":
@@ @@
$this->numberOfRunnedProcesses = $this->finishExecution($th->getProcess(), $toolName, $th->getMessage());
} catch (ProcessFailedException $th) {
// dd($this->numberOfRunnedProcesses);
- $toolName = (string) array_search($th->getProcess(), $this->processes);
+ $toolName = array_search($th->getProcess(), $this->processes);
$this->numberOfRunnedProcesses = $this->finishExecution($th->getProcess(), $toolName);
} catch (Throwable $th) {
$this->errors->setError('Tool crash', $th->getMessage());
|
Infection (ubuntu-latest, 8.4):
src/Tools/Process/ProcessFake.php#L46
Escaped Mutant for Mutator "Throw_":
@@ @@
}
$this->status = self::STATUS_STARTED;
if ($this->mustRaiseException) {
- throw new ProcessFailedException($this);
+ new ProcessFailedException($this);
}
}
/**
|
Infection (ubuntu-latest, 8.4):
src/Tools/Process/ProcessFake.php#L159
Escaped Mutant for Mutator "TrueValue":
@@ @@
public function setFailByException(): ProcessFake
{
$this->isSuccessful = false;
- $this->mustRaiseException = true;
+ $this->mustRaiseException = false;
$nameTool = $this->extractToolName();
$this->outputFake = $this->errorOutputFake = "{$nameTool} fakes an exception";
$this->exitcode = 1;
|
Infection (ubuntu-latest, 8.4):
src/Tools/Process/ProcessFake.php#L162
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$this->mustRaiseException = true;
$nameTool = $this->extractToolName();
$this->outputFake = $this->errorOutputFake = "{$nameTool} fakes an exception";
- $this->exitcode = 1;
+ $this->exitcode = 2;
return $this;
}
public function setFailByFoundedErrors(): ProcessFake
|
Infection (ubuntu-latest, 8.4):
src/Tools/Tool/ParallelLint.php#L44
Escaped Mutant for Mutator "Continue_":
@@ @@
$command = '';
foreach (self::ARGUMENTS as $option) {
if (empty($this->args[$option])) {
- continue;
+ break;
}
switch ($option) {
case self::EXECUTABLE_PATH_OPTION:
|
Infection (ubuntu-latest, 8.4):
src/Tools/Tool/ToolAbstract.php#L167
Escaped Mutant for Mutator "FalseValue":
@@ @@
}
public function isIgnoreErrorsOnExit(): bool
{
- return $this->args[self::IGNORE_ERRORS_ON_EXIT] ?? false;
+ return $this->args[self::IGNORE_ERRORS_ON_EXIT] ?? true;
}
public static function checkTool(string $tool): bool
{
|
Infection (ubuntu-latest, 8.4):
src/Utils/Storage.php#L46
Escaped Mutant for Mutator "FalseValue":
@@ @@
* @return int|bool
* @SuppressWarnings(PHPMD.BooleanArgumentFlag)
*/
- public static function put($path, $contents, $lock = false)
+ public static function put($path, $contents, $lock = true)
{
return FacadesStorage::disk(self::$disk)->put($path, $contents, $lock = false);
}
|
Reports
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
CodeCoverage
|
1.44 MB |
|
GitHooks Metrics - 19-01-2025
|
1.98 MB |
|
Infection
|
166 KB |
|
PhPMetrics
|
381 KB |
|