Search code examples
erlangrebar

Is there a way to tell rebar not to run eunit tests for the dependencies?


When running:

./rebar eunit

the tests are run also for the external dependencies. Is there a way to change this behaviour? Maybe through the rebar.config file?


Solution

  • ./rebar eunit skip_deps=true
    

    (or recursive=false with latest versions).