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