summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-01-19 21:49:04 -0800
committerGitHub <noreply@github.com>2023-01-19 21:49:04 -0800
commit868d721d8c7404bd42f502065b59c66d66b43c07 (patch)
tree411a09c1e1433cb2e3275968bd965821fb347b43 /hacking
parent8e80b03b335cd3ed27b0e9a3ed99bf44eddc2fe2 (diff)
downloadansible-868d721d8c7404bd42f502065b59c66d66b43c07.tar.gz
Flush output in sanity requirements update script. (#79774)
This keeps the subprocess output under the correct heading.
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/update-sanity-requirements.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/update-sanity-requirements.py b/hacking/update-sanity-requirements.py
index 747f058880..88569af17a 100755
--- a/hacking/update-sanity-requirements.py
+++ b/hacking/update-sanity-requirements.py
@@ -83,7 +83,7 @@ def main() -> None:
tests = [test for test in tests if test.name in test_names] if test_names else tests
for test in tests:
- print(f'===[ {test.name} ]===')
+ print(f'===[ {test.name} ]===', flush=True)
test.freeze_requirements()