run_project_tests: Don't try to use tqdm when stdout is not a tty

Like when piped to something like less, where tqdm just makes a mess of
the output instead of providing something helpful.
pull/10573/head
Dylan Baker 2 years ago committed by Eli Schwartz
parent 407eaa3b4a
commit 15078112f9
  1. 2
      run_project_tests.py

@ -1245,7 +1245,7 @@ def _run_tests(all_tests: T.List[T.Tuple[str, T.List[TestDef], bool]],
# one LogRunFuture and one TestRunFuture
global safe_print
futures_iter: T.Iterable[RunFutureUnion] = futures
if len(futures) > 2:
if len(futures) > 2 and sys.stdout.isatty():
try:
from tqdm import tqdm
futures_iter = tqdm(futures, desc='Running tests', unit='test')

Loading…
Cancel
Save