如何告诉rebar3在依赖项中运行测试

时间:2017-09-22 04:51:59

标签: erlang rebar3

我希望我的rebar3应用程序能够测试自身及其所有依赖项。在rebar3中有可能吗? 我创建了一个简单的“测试”插件,试图在项目中的所有应用程序及其依赖项上执行rebar_prv_eunit:do/1,但它不起作用。

以下是https://github.com/kubaodias/rebar3-test-plugin

的代码

1 个答案:

答案 0 :(得分:0)

ls -d */ | xargs -I {} bash -c "cd {} ; rebar3 eunit; cd -"