summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-06 13:27:50 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-06 13:27:50 +0200
commite7f05436d9ab62891158717abe227b77c0cf9757 (patch)
tree97cd1ee93fa8c6d54d469812ee2649d993190918
parenta4864546abc0d34e02659d86d4f94dd7a17f002a (diff)
downloadqutebrowser-e7f05436d9ab62891158717abe227b77c0cf9757.tar.gz
qutebrowser-e7f05436d9ab62891158717abe227b77c0cf9757.zip
ci: Fix up problemmatcher patterns
We need to have a message for the file/line we get from a stacktrace - let's see if it works out to take it from the next "E ..." line.
-rw-r--r--scripts/dev/ci/problemmatchers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/dev/ci/problemmatchers.py b/scripts/dev/ci/problemmatchers.py
index 5756dd41b..e492c714b 100644
--- a/scripts/dev/ci/problemmatchers.py
+++ b/scripts/dev/ci/problemmatchers.py
@@ -160,6 +160,10 @@ MATCHERS = {
"regexp": r'^\033\[1m\033\[31m([^\033]*)\033\[0m:(\d+): .*',
"file": 1,
"line": 2,
+ },
+ {
+ "regexp": r'^\033\[1m\033\[31mE\s+([^\033]*)\033\[0m$',
+ "message": 1,
}
],
},