Skip to content

Commit

Permalink
Update crew test verbose output with improved emoji icons
Browse files Browse the repository at this point in the history
- Replace task and agent completion icons from πŸ‘ to βœ…
- Enhance readability of test output logging
- Maintain consistent test coverage for crew verbose output
  • Loading branch information
lorenzejay committed Feb 14, 2025
1 parent 3e3e68e commit 766422d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/crew_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,12 +854,12 @@ def test_crew_verbose_output(capsys):
"[πŸš€ CREW 'CREW' STARTED]",
"[πŸ“‹ TASK STARTED: RESEARCH AI ADVANCEMENTS.]",
"[πŸ€– AGENT 'RESEARCHER' STARTED TASK]",
"[πŸ‘ AGENT 'RESEARCHER' COMPLETED TASK]",
"[πŸ“‹ TASK COMPLETED: RESEARCH AI ADVANCEMENTS.]",
"[βœ… AGENT 'RESEARCHER' COMPLETED TASK]",
"[βœ… TASK COMPLETED: RESEARCH AI ADVANCEMENTS.]",
"[πŸ“‹ TASK STARTED: WRITE ABOUT AI IN HEALTHCARE.]",
"[πŸ€– AGENT 'SENIOR WRITER' STARTED TASK]",
"[πŸ‘ AGENT 'SENIOR WRITER' COMPLETED TASK]",
"[πŸ“‹ TASK COMPLETED: WRITE ABOUT AI IN HEALTHCARE.]",
"[βœ… AGENT 'SENIOR WRITER' COMPLETED TASK]",
"[βœ… TASK COMPLETED: WRITE ABOUT AI IN HEALTHCARE.]",
"[βœ… CREW 'CREW' COMPLETED]"
]
captured = capsys.readouterr()
Expand Down

0 comments on commit 766422d

Please sign in to comment.