Skip to content

Commit

Permalink
show the final outcome in diffrent color
Browse files Browse the repository at this point in the history
  • Loading branch information
sameh-farouk committed Dec 16, 2024
1 parent cb9c4c9 commit 5bb41a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/rmb_tester/rmb_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ def main():
print(f"twins not responding (twin IDs): {' '.join(map(str, not_responding))}")
print(f"elapsed time: {elapsed_time}")
if responses_expected == success_count:
print("🎉 All responses received successfully! 🎉")
print("\033[92m🎉 All responses received successfully! 🎉\033[0m")
else:
missing_responses = (no_responses / responses_expected) * 100
print(f"⚠️ Warning: {missing_responses:.2f}% of responses are missing! ⚠️")
print("\033[93m⚠️ Warning: {missing_responses:.2f}% of responses are missing! ⚠️\033[0m")

print("=======================")
if not args.short:
Expand Down

0 comments on commit 5bb41a9

Please sign in to comment.