When using:
$ rebar3 as test eunit
it compiles the code into ebin, but the other directories are symlinked in the _build/test/lib
folder. I've tried using profile test
by modifying:
{relx, [{dev_mode, false}]}
This works only for _build/test/rel
directory but not the lib directory. So during tests they are referencing the lib symlink directories. Is there a way to have these directories not symlinked to the original, but actual copies provided like the release?