Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
83c6b44c
Unverified
提交
83c6b44c
authored
12月 26, 2024
作者:
Will Dean
提交者:
GitHub
12月 26, 2024
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add slowest test issue CI/CD (#1125)
上级
231a9776
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
224 行增加
和
0 行删除
+224
-0
slow-tests-issue.yml
.github/workflows/slow-tests-issue.yml
+31
-0
extract-slow-tests.py
scripts/slowest_tests/extract-slow-tests.py
+80
-0
update-slowest-times-issue.sh
scripts/slowest_tests/update-slowest-times-issue.sh
+113
-0
没有找到文件。
.github/workflows/slow-tests-issue.yml
0 → 100644
浏览文件 @
83c6b44c
# Taken from https://github.com/pymc-labs/pymc-marketing/tree/main/.github/workflows/slow-tests-issue.yml
# See the scripts in the `scripts/slowest_tests` directory for more information
---
name
:
Slow Tests Issue Body
on
:
workflow_dispatch
:
schedule
:
-
cron
:
'
0
*/6
*
*
*'
permissions
:
issues
:
write
jobs
:
update-comment
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Install ZSH
run
:
sudo apt-get update && sudo apt-get install -y zsh
-
name
:
Checkout code
uses
:
actions/checkout@v4
-
name
:
Set up Python
uses
:
actions/setup-python@v5
with
:
python-version
:
"
3.11"
-
name
:
Trigger the script
working-directory
:
scripts/slowest_tests
shell
:
zsh {0}
run
:
source update-slowest-times-issue.sh
env
:
GITHUB_TOKEN
:
${{ github.token }}
scripts/slowest_tests/extract-slow-tests.py
0 → 100644
浏览文件 @
83c6b44c
"""This script parses the GitHub action log for test times.
Taken from https://github.com/pymc-labs/pymc-marketing/tree/main/scripts/slowest_tests/extract-slow-tests.py
"""
import
re
import
sys
from
pathlib
import
Path
start_pattern
=
re
.
compile
(
r"==== slow"
)
separator_pattern
=
re
.
compile
(
r"===="
)
time_pattern
=
re
.
compile
(
r"(\d+\.\d+)s "
)
def
extract_lines
(
lines
:
list
[
str
])
->
list
[
str
]:
times
=
[]
in_section
=
False
for
line
in
lines
:
detect_start
=
start_pattern
.
search
(
line
)
detect_end
=
separator_pattern
.
search
(
line
)
if
detect_start
:
in_section
=
True
if
in_section
:
times
.
append
(
line
)
if
not
detect_start
and
in_section
and
detect_end
:
break
return
times
def
trim_up_to_match
(
pattern
,
string
:
str
)
->
str
:
match
=
pattern
.
search
(
string
)
if
not
match
:
return
""
return
string
[
match
.
start
()
:]
def
trim
(
pattern
,
lines
:
list
[
str
])
->
list
[
str
]:
return
[
trim_up_to_match
(
pattern
,
line
)
for
line
in
lines
]
def
strip_ansi
(
text
:
str
)
->
str
:
ansi_escape
=
re
.
compile
(
r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])"
)
return
ansi_escape
.
sub
(
""
,
text
)
def
format_times
(
times
:
list
[
str
])
->
list
[
str
]:
return
(
trim
(
separator_pattern
,
times
[:
1
])
+
trim
(
time_pattern
,
times
[
1
:
-
1
])
+
[
strip_ansi
(
line
)
for
line
in
trim
(
separator_pattern
,
times
[
-
1
:])]
)
def
read_lines_from_stdin
():
return
sys
.
stdin
.
read
()
.
splitlines
()
def
read_from_file
(
file
:
Path
):
"""For testing purposes."""
return
file
.
read_text
()
.
splitlines
()
def
main
(
read_lines
):
lines
=
read_lines
()
times
=
extract_lines
(
lines
)
parsed_times
=
format_times
(
times
)
print
(
"
\n
"
.
join
(
parsed_times
))
if
__name__
==
"__main__"
:
read_lines
=
read_lines_from_stdin
main
(
read_lines
)
scripts/slowest_tests/update-slowest-times-issue.sh
0 → 100644
浏览文件 @
83c6b44c
#!/bin/zsh
DRY_RUN
=
false
owner
=
pymc-devs
repo
=
pytensor
issue_number
=
1124
title
=
"Speed up test times :rocket:"
workflow
=
Tests
latest_id
=
$(
gh run list
--workflow
$workflow
--status
success
--limit
1
--json
databaseId
--jq
'.[0].databaseId'
)
jobs
=
$(
gh api /repos/
$owner
/
$repo
/actions/runs/
$latest_id
/jobs
--jq
'.jobs | map({name: .name, run_id: .run_id, id: .id, started_at: .started_at, completed_at: .completed_at})'
)
# Skip 3.10, float32, and Benchmark tests
function
skip_job
()
{
name
=
$1
if
[[
$name
==
*
"py3.10"
*
]]
;
then
return
0
fi
if
[[
$name
==
*
"float32 1"
*
]]
;
then
return
0
fi
if
[[
$name
==
*
"Benchmark"
*
]]
;
then
return
0
fi
return
1
}
# Remove common prefix from the name
function
remove_prefix
()
{
name
=
$1
echo
$name
|
sed
-e
's/^ubuntu-latest test py3.12 : fast-compile 0 : float32 0 : //'
}
function
human_readable_time
()
{
started_at
=
$1
completed_at
=
$2
start_seconds
=
$(
date
-d
"
$started_at
"
+%s
)
end_seconds
=
$(
date
-d
"
$completed_at
"
+%s
)
seconds
=
$((
$end_seconds
-
$start_seconds
))
if
[
$seconds
-lt
60
]
;
then
echo
"
$seconds
seconds"
else
echo
"
$(
date
-u
-d
@
$seconds
+
'%-M minutes %-S seconds'
)
"
fi
}
all_times
=
""
echo
"
$jobs
"
| jq
-c
'.[]'
|
while
read
-r
job
;
do
id
=
$(
echo
$job
| jq
-r
'.id'
)
name
=
$(
echo
$job
| jq
-r
'.name'
)
run_id
=
$(
echo
$job
| jq
-r
'.run_id'
)
started_at
=
$(
echo
$job
| jq
-r
'.started_at'
)
completed_at
=
$(
echo
$job
| jq
-r
'.completed_at'
)
if
skip_job
$name
;
then
echo
"Skipping
$name
"
continue
fi
echo
"Processing job:
$name
(ID:
$id
, Run ID:
$run_id
)"
times
=
$(
gh run view
--job
$id
--log
| python extract-slow-tests.py
)
if
[
-z
"
$times
"
]
;
then
# Some of the jobs are non-test jobs, so we skip them
echo
"No tests found for '
$name
', skipping"
continue
fi
echo
$times
human_readable
=
$(
human_readable_time
$started_at
$completed_at
)
name
=
$(
remove_prefix
$name
)
top
=
"<details><summary>(
$human_readable
)
$name
</summary>
\n\n\n\`\`\`
"
bottom
=
"
\`\`\`\n\n
</details>"
formatted_times
=
"
$top
\n
$times
\n
$bottom
"
if
[
-n
"
$all_times
"
]
;
then
all_times
=
"
$all_times
\n
$formatted_times
"
else
all_times
=
"
$formatted_times
"
fi
done
run_date
=
$(
date
+
"%Y-%m-%d"
)
body
=
$(
cat
<<
EOF
If you are motivated to help speed up some tests, we would appreciate it!
Here are some of the slowest test times:
$all_times
You can find more information on how to contribute [here](https://pytensor.readthedocs.io/en/latest/dev_start_guide.html)
Automatically generated by [GitHub Action](https://github.com/pymc-devs/pytensor/blob/main/.github/workflows/slow-tests-issue.yml)
Latest run date:
$run_date
EOF
)
if
[
"
$DRY_RUN
"
=
true
]
;
then
echo
"Dry run, not updating issue"
echo
$body
exit
fi
echo
$body
| gh issue edit
$issue_number
--body-file
-
--title
"
$title
"
echo
"Updated issue
$issue_number
with all times"
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论