diff options
author | Matt Clay <matt@mystile.com> | 2023-01-20 06:49:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 06:49:04 +0100 |
commit | 868d721d8c7404bd42f502065b59c66d66b43c07 (patch) | |
tree | 411a09c1e1433cb2e3275968bd965821fb347b43 /hacking/update-sanity-requirements.py | |
parent | document where to save cloud config files (#79412) (diff) | |
download | ansible-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-x | hacking/update-sanity-requirements.py | 2 |
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() |