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:
parent
d1fa446454
commit
bb6d43b63b
1 changed files with 1 additions and 1 deletions
2
justfile
2
justfile
|
@ -24,4 +24,4 @@ install *OPTIONS: (build OPTIONS)
|
||||||
|
|
||||||
# Run tests
|
# Run tests
|
||||||
test *OPTIONS:
|
test *OPTIONS:
|
||||||
meson test -C build --print-errorlogs --quiet {{ OPTIONS }}
|
meson test -C build --print-errorlogs {{ OPTIONS }}
|
||||||
|
|
Loading…
Reference in a new issue