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.
我有一个要求,Simplecov 应该打印这一行
生成的覆盖率报告...
仅当测试套件为绿色时。
这可能吗?
这是我的初始化程序
SimpleCov.start do add_filter "/test/" coverage_dir "/tmp/coverage/" end
SimpleCov 中有一个 at_exit 挂钩,您可以在其中跳过消息
SimpleCov.at_exit do SimpleCov.result.format! if all_test_passed end
但找不到“all_test_passed”的解决方法。没有找到获取摘要的方法,以便我可以检查所有测试是否通过。