We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aededce commit a710dd7Copy full SHA for a710dd7
1 file changed
check-style.sh
@@ -44,6 +44,9 @@ esac
44
# Filter out symlinks from `affected_files`. We'll check the real files.
45
affected_files=$(echo "$affected_files" | xargs -r -n1 file | grep -v 'symbolic link' | cut -d: -f1 | tr '\n' ' ')
46
47
+# Filter out benchmark report files.
48
+affected_files=$(echo "$affected_files" | grep -vE '.*/reports/.*.txt' | tr '\n' ' ')
49
+
50
# Unset variable would be a sign of programmer error. We are not using '-e' in
51
# this script as we'd like to handle these cases ourselves where relevant, i.e.,
52
# allow more than one code check failure per run.
0 commit comments