We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac6795 commit a5895c7Copy full SHA for a5895c7
scripts/slowest_tests/update-slowest-times-issue.sh
@@ -28,6 +28,12 @@ function skip_job() {
28
return 1
29
}
30
31
+# Remove common prefix from the name
32
+function remove_prefix() {
33
+ name=$1
34
+ echo $name | sed -e 's/^ubuntu-latest test py3.12 : fast-compile 0 : float32 0 : //'
35
+}
36
+
37
all_times=""
38
echo "$jobs" | jq -c '.[]' | while read -r job; do
39
id=$(echo $job | jq -r '.id')
@@ -50,6 +56,8 @@ echo "$jobs" | jq -c '.[]' | while read -r job; do
50
56
51
57
echo $times
52
58
59
+ name=$(remove_prefix $name)
60
53
61
top="<details><summary>$name</summary>\n\n\n\`\`\`"
54
62
bottom="\`\`\`\n\n</details>"
55
63
0 commit comments