Skip to content

Commit 5a68512

Browse files
George Penkovgeorgepenkoff
authored andcommitted
Tweaking the message limits
1 parent 39e7222 commit 5a68512

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
issue_number: context.issue.number,
3838
owner: context.repo.owner,
3939
repo: context.repo.repo,
40-
body: fs.readFileSync('/home/ubuntu/testdox-reduced-output-printer/test_results.txt', 'utf8')
40+
body: fs.readFileSync(process.env.GITHUB_WORKSPACE + '/test_results.txt', 'utf8')
4141
})
4242
4343

src/CliTestDoxReducedOutputPrinter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
class CliTestDoxReducedOutputPrinter extends CliTestDoxPrinter
1010
{
11-
const MAX_LINE_LENGTH = 100;
12-
const MAX_LINES = 2;
11+
const MAX_LINE_LENGTH = 200;
12+
const MAX_LINES = 6;
1313

1414
protected function formatThrowable(Throwable $t, ?int $status = null): string
1515
{

0 commit comments

Comments
 (0)