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
This commit is contained in:
Qyriad 2024-05-23 16:54:04 -06:00
parent d1fa446454
commit bb6d43b63b

View file

@ -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 }}