我正在使用rebar
來編譯我的應用程序。其實,這是兩個應用:如何在兩個應用程序節點上使用「rebar ct」?
deps/
apps/A/
apps/B/
apps/B/suites
...其中B
取決於A
。這在apps/B/src/B.app.src
中正確配置。但是,當我嘗試運行rebar ct
時,它無法測試B
,報告無法找到A.app
。
在詳細模式下運行rebar ct
表明,它的設置代碼搜索路徑(-pa
)包括apps/B/ebin
,並deps/foo/ebin
,deps/bar/ebin
等
這是不包括apps/A/ebin
。
如何使用Common Test來測試由多個應用程序組成的Erlang「應用程序」?