summaryrefslogtreecommitdiff
path: root/scripts/dev/ci/problemmatchers.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/ci/problemmatchers.py')
-rw-r--r--scripts/dev/ci/problemmatchers.py15
1 files changed, 13 insertions, 2 deletions
diff --git a/scripts/dev/ci/problemmatchers.py b/scripts/dev/ci/problemmatchers.py
index 0f8ce8d1f..5756dd41b 100644
--- a/scripts/dev/ci/problemmatchers.py
+++ b/scripts/dev/ci/problemmatchers.py
@@ -157,10 +157,21 @@ MATCHERS = {
"severity": "error",
"pattern": [
{
- "regexp": r'^\033\[1m\033\[31m([^\033]*)\033\[0m:(\d+): ?(.*)',
+ "regexp": r'^\033\[1m\033\[31m([^\033]*)\033\[0m:(\d+): .*',
"file": 1,
"line": 2,
- "message": 3,
+ }
+ ],
+ },
+ {
+ # pytest error lines
+ # E end2end.fixtures.testprocess.WaitForTimeout: Timed out
+ # after 15000ms waiting for [...]
+ "severity": "error",
+ "pattern": [
+ {
+ "regexp": r'^\033\[1m\033\[31mE\s+([^\033]*)\033\[0m$',
+ "message": 1,
}
],
},