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

szqfcxe2  于 2022-12-08  发布在  Erlang
关注(0)|答案(1)|浏览(158)

我想让我的rebar3应用程序测试它自己和它的所有依赖项。这在rebar3中是可能的吗?我创建了一个简单的“测试”插件,试图在项目中的所有应用程序和它们的依赖项上执行rebar_prv_eunit:do/1,但它不起作用。
下面是它的代码https://github.com/kubaodias/rebar3-test-plugin

goqiplq2

goqiplq21#

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

相关问题