Skip to content

Commit 26ce93d

Browse files
authored
Merge pull request #8 from wickedOne/renovate-fix
use renovate
2 parents 2fd8cad + 395d5f0 commit 26ce93d

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- "locked"
2626
php-version:
2727
- "8.1"
28-
- "8.2"
2928
operating-system:
3029
- "ubuntu-latest"
3130
steps:

src/PhpStormPrinter.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,9 @@ protected function printDefect(TestFailure $defect, int $count): void
3030
}
3131
}
3232

33-
/**
34-
* @group ci-borked
35-
*
36-
* github actions for some reason _always_ has a failing line so this test will always fail.
37-
*/
3833
private function printDefectFooter(TestFailure $defect): void
3934
{
4035
$trace = explode(\PHP_EOL, trim((string) $defect->thrownException()));
41-
print_r($trace);
4236
$offender = end($trace);
4337

4438
// the things you do to please infection... ;-)

tests/PhpStormPrinterTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,12 @@ public function testPrintDefectFooter(): void
5656
}
5757

5858
/**
59+
* @group ci-borked
60+
*
5961
* in some occasions no trace is provided.
6062
* make sure printing editor url isn't printed in those occasions.
63+
*
64+
* github actions for some reason _always_ has a failing line so this test will always fail.
6165
*/
6266
public function testSkipDefectFooterOnWarning(): void
6367
{

0 commit comments

Comments
 (0)