20

运行时:

./rebar eunit

测试也针对外部依赖项运行。有没有办法改变这种行为?也许通过 rebar.config 文件?

4

3 回答 3

33
./rebar eunit skip_deps=true

(或recursive=false最新版本)。

于 2011-08-10T11:24:17.643 回答
4

你也可以使用

./rebar eunit apps=your_app1,your_app2

这将只为指定的应用程序运行 eunit 测试。

于 2013-08-09T12:22:29.413 回答
3

还有一个选项可以仅为特定应用程序运行测试:

./rebar eunit app=app_name
于 2011-08-10T11:58:35.560 回答