Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
运行时:
./rebar eunit
测试也针对外部依赖项运行。有没有办法改变这种行为?也许通过 rebar.config 文件?
./rebar eunit skip_deps=true
(或recursive=false最新版本)。
recursive=false
你也可以使用
./rebar eunit apps=your_app1,your_app2
这将只为指定的应用程序运行 eunit 测试。
还有一个选项可以仅为特定应用程序运行测试:
./rebar eunit app=app_name