当我使用带有Common test的rebar3时,如下所示:rebar3 ct
它将我的所有代码编译(生成梁文件)到测试文件夹中。一切正常但不太理想。
我如何将它们放在_build / test / MyApp / ebin部分?
Eunit做得很好,但Common Test没有。
项目布局:
MyApp/
apps/
MyApp/
include/
priv/
src/
test/
ct/
eunit/
我希望光束像eunit一样进入_build部分:
MyApp/
_build/
test/
lib/
MyApp/
ebin/
我的Common Test logs文件夹进入了_build / test / logs,很酷。请让我知道我错过了什么。