有没有办法告诉 rebar 不要对依赖项运行 eunit 测试?
运行时:
./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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用
这将仅针对指定的应用程序运行 eunit 测试。
You also can also use
This will run eunit test only for the specified applications.
还有一个选项仅针对特定应用程序运行测试:
There is also an option to run tests only for specific application:
(或使用最新版本的
recursive=false
)。(or
recursive=false
with latest versions).