1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-08 04:18:19 +02:00
This commit is contained in:
Eric Wieser 2025-06-01 17:09:51 +02:00 committed by GitHub
commit e78adcb867
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

9
.github/python.json vendored
View file

@ -4,13 +4,16 @@
"owner": "python", "owner": "python",
"pattern": [ "pattern": [
{ {
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$", "regexp": "^ File \"([^\"]*)\", line (\\d+).*",
"file": 1, "file": 1,
"line": 2 "line": 2
}, },
{ {
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$", "regexp": "^ .*$"
"message": 2 },
{
"regexp": "^(?! File)(.*)\\s*$",
"message": 1
} }
] ]
} }