Skip to content

Commit

Permalink
Hide BinaryPath test processes from TUI by default. (#10774)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Sep 14, 2020
1 parent 391d468 commit ca7f927
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/python/pants/engine/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,11 @@ async def find_binary(request: BinaryPathRequest) -> BinaryPaths:
Get(
FallibleProcessResult,
UncacheableProcess(
Process(argv=[path, *request.test_args], description=f"Test binary {path}.")
Process(
description=f"Test binary {path}.",
level=LogLevel.DEBUG,
argv=[path, *request.test_args],
)
),
)
for path in found_paths
Expand Down

0 comments on commit ca7f927

Please sign in to comment.