diff options
Diffstat (limited to 'scripts/test_runner.py')
-rwxr-xr-x | scripts/test_runner.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/test_runner.py b/scripts/test_runner.py index 80c3e30..53bebd3 100755 --- a/scripts/test_runner.py +++ b/scripts/test_runner.py @@ -25,9 +25,11 @@ def main(): cmd.append(os.path.join(cwd, test)) #print(cmd) - print(f' {test:.<48}', end='') + if not args.verbose: + print(f' {test:.<48}', end='') result = subprocess.run(cmd, capture_output=not args.verbose, check=False) - print('ok' if result.returncode == 0 else 'failed') + if not args.verbose: + print('ok' if result.returncode == 0 else 'failed') if result.returncode != 0: fail_count += 1 |