summaryrefslogtreecommitdiffstats
path: root/hacking/update-sanity-requirements.py
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-01-20 06:49:04 +0100
committerGitHub <noreply@github.com>2023-01-20 06:49:04 +0100
commit868d721d8c7404bd42f502065b59c66d66b43c07 (patch)
tree411a09c1e1433cb2e3275968bd965821fb347b43 /hacking/update-sanity-requirements.py
parentdocument where to save cloud config files (#79412) (diff)
downloadansible-868d721d8c7404bd42f502065b59c66d66b43c07.tar.xz
ansible-868d721d8c7404bd42f502065b59c66d66b43c07.zip
Flush output in sanity requirements update script. (#79774)
This keeps the subprocess output under the correct heading.
Diffstat (limited to 'hacking/update-sanity-requirements.py')
-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()