Add documentation for the --verbosity option

This commit is contained in:
Martin Hořeňovský 2022-01-02 21:02:32 +01:00
parent 54e89e8364
commit 3ab981fa21
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 14 additions and 0 deletions

View File

@ -72,6 +72,7 @@ Click one of the following links to take you straight to that option - or scroll
<a href="#test-sharding"> ` --shard-count`</a><br />
<a href="#test-sharding"> ` --shard-index`</a><br />
<a href=#no-tests-override> ` --allow-running-no-tests`</a><br />
<a href=#output-verbosity> ` --verbosity`</a><br />
</br>
@ -478,6 +479,19 @@ run, e.g. if the binary was compiled with no tests, or the provided test
spec matched no tests. This flag overrides that, so a test run with no
tests still returns 0.
## Output verbosity
```
-v, --verbosity <quiet|normal|high>
```
Changing verbosity might change how much details Catch2's reporters output.
However, you should consider changing the verbosity level as a _suggestion_.
Not all reporters support all verbosity levels, e.g. because the reporter's
format cannot meaningfully change. In that case, the verbosity level is
ignored.
Verbosity defaults to _normal_.
---