aboutsummaryrefslogtreecommitdiff
path: root/.github/matchers/phpunit.json
blob: 0869357e7e5ade5e3eef15634b2864641d838e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
    "problemMatcher": [
        {
            "owner": "phpunit",
            "fileLocation": "absolute",
            "pattern": [
                {
                    "regexp": "^\\d+\\)\\s.*$"
                },
                {
                    "regexp": "^(.*)$",
                    "message": 1
                },
                {
                    "regexp": "^\\s*$"
                },
                {
                    "regexp": "^(.*):(\\d+)$",
                    "file": 1,
                    "line": 2
                }
            ]
        }
    ]
}