Skip to content

Continuous Integration #747

Continuous Integration

Continuous Integration #747

Triggered via create November 22, 2023 19:55
Status Success
Total duration 1m 2s
Artifacts
run  /  Generate test matrix
2s
run / Generate test matrix
Matrix: run / Code Coverage
Matrix: run / Coding Standards
Matrix: run / Lint composer.json
Matrix: run / Lint symfony container
Matrix: run / Mutation Tests
Matrix: run / Static Code Analysis
Matrix: run / Lint twig files
Matrix: run / Lint XLIFF files
Matrix: run / Lint YML files
Matrix: run / tests
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
run / Mutation Tests (8.2): src/DependencyInjection/NucleosLastFmExtension.php#L40
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $bundles = $container->getParameter('kernel.bundles'); $loader = new Loader\PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); if (isset($bundles['TwigBundle'])) { - $loader->load('action.php'); + } $loader->load('services.php'); $this->configureApi($container, $config);
run / Mutation Tests (8.2): src/DependencyInjection/NucleosLastFmExtension.php#L43
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ if (isset($bundles['TwigBundle'])) { $loader->load('action.php'); } - $loader->load('services.php'); + $this->configureApi($container, $config); $this->configureHttpClient($container, $config); }
run / Mutation Tests (8.2): src/Session/SessionManager.php#L83
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ throw new RuntimeException('Could not retrieve request.'); } $session = $request->hasSession() ? $request->getSession() : null; - if (!$session instanceof Session) { + if (!true) { throw new RuntimeException('Could not retrieve session from request.'); } return $session; } }