有没有办法告诉 rebar 不要对依赖项运行 eunit 测试?

发布于 2024-11-28 17:32:54 字数 106 浏览 0 评论 0原文

运行时:

./rebar eunit

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

When running:

./rebar eunit

the tests are run also for the external dependencies. Is there a way to change this behaviour? Maybe through the rebar.config file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

多孤肩上扛 2024-12-05 17:32:55

您还可以使用

./rebar eunit apps=your_app1,your_app2

这将仅针对指定的应用程序运行 eunit 测试。

You also can also use

./rebar eunit apps=your_app1,your_app2

This will run eunit test only for the specified applications.

半山落雨半山空 2024-12-05 17:32:55

还有一个选项仅针对特定应用程序运行测试:

./rebar eunit app=app_name

There is also an option to run tests only for specific application:

./rebar eunit app=app_name
雨轻弹 2024-12-05 17:32:54
./rebar eunit skip_deps=true

(或使用最新版本的recursive=false)。

./rebar eunit skip_deps=true

(or recursive=false with latest versions).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文