I have 4 applications within a node, all tested with Common Test.
My cover specification:
{level, details}.
{incl_dirs, ["apps/app1/ebin", "apps/app2/ebin", "apps/app3/ebin", "apps/app4/ebin"]}.
Test command:
ct_run -pa apps/*/ebin -pa deps/*/ebin -dir apps/*/test/ -logdir tests -cover cover.spec
The problem is that cover report (html) for each application contains all modules from other apps as well, which obviously have 0% coverage. Is there a way to configure it to exclude modules which do not belong to given app?