Improve the output of tests/stubtest_third_party.py when it fails (#11763)

This commit is contained in:
Alex Waygood
2024-04-14 23:23:25 +01:00
committed by GitHub
parent f4b89f5f86
commit 7c8e82fe48
3 changed files with 32 additions and 7 deletions

View File

@@ -56,6 +56,14 @@ def print_success_msg() -> None:
print(colored("success", "green"))
def print_divider() -> None:
"""Print a row of * symbols across the screen.
This can be useful to divide terminal output into separate sections.
"""
print("*" * 70)
# ====================================================================
# Dynamic venv creation
# ====================================================================