문제

I've got a rebar.config file that looks like this:

{sub_dirs, ["apps/app1", "apps/app2"]}.
{lib_dirs, ["deps"]}.
{deps, [
        %% etc.
   ]}.

When I run ./rebar ct from the top-level directory, it recurses into the "deps" folder and starts running Common Test in there as well as in my application directories.

Since this increases the build time substantially, and since the dependencies should have passed their tests before being released, I'd like rebar not to do this.

How do I get it to only run ct (and eunit) against my code, ignoring the deps folder?

도움이 되었습니까?

해결책

You can use the skip_deps option:

rebar ct skip_deps=true

or

rebar eunit skip_deps=true
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top