Skip to content

fix: Ensure the debug flag is not forwarded #103

fix: Ensure the debug flag is not forwarded

fix: Ensure the debug flag is not forwarded #103

Triggered via pull request October 6, 2023 14:51
Status Failure
Total duration 54s
Artifacts

tests.yaml

on: pull_request
Matrix: debug-test
Matrix: infection
Matrix: tests
Tests Status
0s
Tests Status
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 1 warning
Infection with PHP 8.2
Process completed with exit code 2.
Tests Status
Process completed with exit code 1.
Infection with PHP 8.2: src/Test/BaseMakefileTestCase.php#L159
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ } protected static final function getNonDebugMakeFlags() : string { - $makeFlags = (string) getenv('MAKEFLAGS'); + $makeFlags = getenv('MAKEFLAGS'); $nonDebugFlags = array_filter(explode(' ', $makeFlags), static fn(string $flag) => str_starts_with('--debug=', $flag)); return implode(' ', $nonDebugFlags); }