From bb6d43b63ba664fdda6eba6fd3752f985e76e302 Mon Sep 17 00:00:00 2001 From: Qyriad Date: Thu, 23 May 2024 16:54:04 -0600 Subject: [PATCH] justfile: remove --quiet from `just test` `meson test` refuses to let `--verbose` (which shows the entire invocation and stdio) override `--quiet`, but if neither are specified in the justfile then you can use either `just test -q` or `just test -v` Change-Id: I449e13084ce64666b7ee2ab4280818782fb8185a --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 83743ec42..dfa58bdf2 100644 --- a/justfile +++ b/justfile @@ -24,4 +24,4 @@ install *OPTIONS: (build OPTIONS) # Run tests test *OPTIONS: - meson test -C build --print-errorlogs --quiet {{ OPTIONS }} + meson test -C build --print-errorlogs {{ OPTIONS }}