Skip to content

Commit

Permalink
.github: don't catch exception when they will be retried
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr committed Nov 22, 2024
1 parent c1825cf commit 43e8703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/problem-matchers/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"owner": "python-problem-matcher",
"pattern": [
{
"regexp": "^.*File \\\"([^\\\"]|.*)\\\", line (\\d+).*",
"regexp": "^.*File \\\"((?!Attempt)[^\\\"]|.*)\\\", line (\\d+).*",
"file": 1,
"line": 2
},
{
"regexp": "^.*raise.*$"
},
{
"regexp": "^\\s*(.*)\\s*$",
"regexp": "^\\s*((?!Attempt).*)\\s*$",
"message": 1
}
]
Expand Down

0 comments on commit 43e8703

Please sign in to comment.