feature: 主流程支持配置agentops

This commit is contained in:
voidking 2024-07-16 17:44:14 +08:00
parent 39eb534ca0
commit 8f7453352a
10 changed files with 27 additions and 1 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