diff options
-rw-r--r-- | manpages/rebar3.1 | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/manpages/rebar3.1 b/manpages/rebar3.1 index 5c42f21..b596925 100644 --- a/manpages/rebar3.1 +++ b/manpages/rebar3.1 @@ -65,14 +65,16 @@ Remove compiled beam files from apps. \fBcompile\fR Compile apps .app.src and .erl files. .TP -\fBcover\fR [\fI-r\fR|\fI--reset\fR] [\fI-v\fR|\fI--verbose\fR] +\fBcover\fR [\fI-r\fR|\fI--reset\fR] [\fI-v\fR|\fI--verbose\fR] [\fI-m\fR|\fI--min_coverage\fR] Perform coverage analysis. .IP \fI--reset\fR: Reset all coverdata. .IP \fI--verbose\fR: Print coverage analysis. +.IP +\fI--min_coverage\fR: Mandate a coverage percentage required to succeed (0..100) .TP -\fBct\fR [\fI--dir\fR] [\fI--suite\fR] [\fI--group\fR] [\fI--case\fR] [\fI--label\fR] [\fI--config\fR] [\fI--spec\fR] [\fI--join_specs\fR] [\fI--allow_user_terms\fR] [\fI--logdir\fR] [\fI--logopts\fR] [\fI--verbosity\fR] [\fI-c\fR|\fI--cover\fR] [\fI--repeat\fR] [\fI--duration\fR] [\fI--until\fR] [\fI--force_stop\fR] [\fI--basic_html\fR] [\fI--stylesheet\fR] [\fI--decrypt_key\fR] [\fI--decrypt_file\fR] [\fI--abort_if_missing_suites\fR] [\fI--multiply_timetraps\fR] [\fI--scale_timetraps\fR] [\fI--create_priv_dir\fR] [\fI--include\fR] [\fI--readable\fR] [\fI-v\fR|\fI--verbose\fR] [\fI--name\fR] [\fI--sname\fR] [\fI--setcookie\fR] [\fI--sys_config\fR] +\fBct\fR [\fI--dir\fR] [\fI--suite\fR] [\fI--group\fR] [\fI--case\fR] [\fI--label\fR] [\fI--config\fR] [\fI--spec\fR] [\fI--join_specs\fR] [\fI--allow_user_terms\fR] [\fI--logdir\fR] [\fI--logopts\fR] [\fI--verbosity\fR] [\fI-c\fR|\fI--cover\fR] [\fI--cover_export_name\fR] [\fI--repeat\fR] [\fI--duration\fR] [\fI--until\fR] [\fI--force_stop\fR] [\fI--basic_html\fR] [\fI--stylesheet\fR] [\fI--decrypt_key\fR] [\fI--decrypt_file\fR] [\fI--abort_if_missing_suites\fR] [\fI--multiply_timetraps\fR] [\fI--scale_timetraps\fR] [\fI--create_priv_dir\fR] [\fI--include\fR] [\fI--readable\fR] [\fI-v\fR|\fI--verbose\fR] [\fI--name\fR] [\fI--sname\fR] [\fI--setcookie\fR] [\fI--sys_config\fR] [\fI--compile_only\fR] [\fI--retry\fR] Run Common Tests. .IP \fI--dir\fR: List of additional directories containing test suites @@ -101,6 +103,8 @@ Run Common Tests. .IP \fI--cover\fR: Generate cover data .IP +\fI--cover_export_name\fR: Base name of the coverdata file to write +.IP \fI--repeat\fR: How often to repeat tests .IP \fI--duration\fR: Max runtime (format: HHMMSS) @@ -138,6 +142,10 @@ Run Common Tests. \fI--setcookie\fR: Sets the cookie if the node is distributed .IP \fI--sys_config\fR: List of application config files +.IP +\fI--compile_only\fR: Compile modules in the project with the test configuration but do not run the tests +.IP +\fI--retry\fR: Experimental feature. If any specification for previously failing test is found, runs them. .TP \fBdeps\fR List dependencies @@ -158,7 +166,7 @@ Generate documentation using edoc. \fBescriptize\fR Generate escript archive. .TP -\fBeunit\fR [\fI--app\fR] [\fI--application\fR] [\fI-c\fR|\fI--cover\fR] [\fI-d\fR|\fI--dir\fR] [\fI-f\fR|\fI--file\fR] [\fI-m\fR|\fI--module\fR] [\fI-s\fR|\fI--suite\fR] [\fI-v\fR|\fI--verbose\fR] [\fI--name\fR] [\fI--sname\fR] [\fI--setcookie\fR] +\fBeunit\fR [\fI--app\fR] [\fI--application\fR] [\fI-c\fR|\fI--cover\fR] [\fI--cover_export_name\fR] [\fI-d\fR|\fI--dir\fR] [\fI-f\fR|\fI--file\fR] [\fI-m\fR|\fI--module\fR] [\fI-s\fR|\fI--suite\fR] [\fI-v\fR|\fI--verbose\fR] [\fI--name\fR] [\fI--sname\fR] [\fI--setcookie\fR] Run EUnit Tests. .IP \fI--app\fR: Comma separated list of application test suites to run. Equivalent to `[{application, App}]`. @@ -167,6 +175,8 @@ Run EUnit Tests. .IP \fI--cover\fR: Generate cover data. Defaults to false. .IP +\fI--cover_export_name\fR: Base name of the coverdata file to write +.IP \fI--dir\fR: Comma separated list of dirs to load tests from. Equivalent to `[{dir, Dir}]`. .IP \fI--file\fR: Comma separated list of files to load tests from. Equivalent to `[{file, File}]`. |