diff options
| author | alisdair sullivan <alisdair.sullivan@askuity.com> | 2016-03-01 15:22:03 -0800 | 
|---|---|---|
| committer | alisdair sullivan <alisdair.sullivan@askuity.com> | 2016-03-01 15:22:03 -0800 | 
| commit | 3fa202397bed4281596616eb61cd4c66360ce415 (patch) | |
| tree | bf5bf9c598dd03bd9dcebd7299626abab8ef3f19 /src | |
| parent | 93cb2329a04a7a25e2ca7f0984d49529fbd5b458 (diff) | |
add a link to the docs about `test_spec` and `cover` in ct warnings
Diffstat (limited to 'src')
| -rw-r--r-- | src/rebar_prv_common_test.erl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl index 99b1d8b..12dbec9 100644 --- a/src/rebar_prv_common_test.erl +++ b/src/rebar_prv_common_test.erl @@ -165,9 +165,9 @@ cfgopts(State) ->  ensure_opts([], Acc) -> lists:reverse(Acc);  ensure_opts([{test_spec, _}|_Rest], _Acc) -> -    ?PRV_ERROR({badconfig, "Test specs not supported"}); +    ?PRV_ERROR({badconfig, "Test specs not supported. See http://www.rebar3.org/docs/running-tests#common-test"});  ensure_opts([{cover, _}|_Rest], _Acc) -> -    ?PRV_ERROR({badconfig, "Cover specs not supported"}); +    ?PRV_ERROR({badconfig, "Cover specs not supported. See http://www.rebar3.org/docs/running-tests#common-test"});  ensure_opts([{auto_compile, _}|_Rest], _Acc) ->      ?PRV_ERROR({badconfig, "Auto compile not supported"});  ensure_opts([{suite, Suite}|Rest], Acc) when is_integer(hd(Suite)) -> | 
