1
0
mirror of https://github.com/actions/setup-python synced 2024-11-30 21:22:28 +08:00
This commit is contained in:
Eric Wieser 2024-09-11 14:22:16 +02:00 committed by GitHub
commit df5435eba6
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",
"pattern": [
{
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$",
"regexp": "^ File \"([^\"]*)\", line (\\d+).*",
"file": 1,
"line": 2
},
{
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$",
"message": 2
"regexp": "^ .*$"
},
{
"regexp": "^(?! File)(.*)\\s*$",
"message": 1
}
]
}