We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e7222 commit 5a68512Copy full SHA for 5a68512
.github/workflows/build.yml
@@ -37,7 +37,7 @@ jobs:
37
issue_number: context.issue.number,
38
owner: context.repo.owner,
39
repo: context.repo.repo,
40
- body: fs.readFileSync('/home/ubuntu/testdox-reduced-output-printer/test_results.txt', 'utf8')
+ body: fs.readFileSync(process.env.GITHUB_WORKSPACE + '/test_results.txt', 'utf8')
41
})
42
43
src/CliTestDoxReducedOutputPrinter.php
@@ -8,8 +8,8 @@
8
9
class CliTestDoxReducedOutputPrinter extends CliTestDoxPrinter
10
{
11
- const MAX_LINE_LENGTH = 100;
12
- const MAX_LINES = 2;
+ const MAX_LINE_LENGTH = 200;
+ const MAX_LINES = 6;
13
14
protected function formatThrowable(Throwable $t, ?int $status = null): string
15
0 commit comments