I have three test suites and use the use_merging flag to combine coverage, but the report is generated after each test suite completes as well.
As my test suites are running, the coverage goes up like this:
Unit tests: 84%
Functional tests: 91%
Features: 95%
Currently, I have to have minimum_coverage set to 84%, but I'd like to be able to set it to 95% since that's our total combined coverage.
Is there any way to have simplecov wait to make a run as failed based on minimum_coverage until after the final test suite completes?