feature: 主流程支持配置agentops

This commit is contained in:
voidking 2024-07-16 17:44:14 +08:00
parent a3699128d1
commit bbb65c9669
10 changed files with 28 additions and 2 deletions

View file

@ -39,7 +39,7 @@ jobs:
- name: Show failed tests and overall summary
run: |
grep -E "FAILED tests|ERROR tests|[0-9]+ passed," unittest.txt
failed_count=$(grep -E "FAILED|ERROR" unittest.txt | wc -l)
failed_count=$(grep -E "FAILED tests|ERROR tests|[0-9]+ passed," unittest.txt | wc -l)
if [[ "$failed_count" -gt 0 ]]; then
echo "$failed_count failed lines found! Task failed."
exit 1