Hello,
I attempted to split the test suite of a large Elixir project to improve execution speed. However, I observed that the test coverage percentage dropped, which is expected since each partition only runs a subset of the tests.
Is there a way to aggregate the coverage results into a unified report? I could not find any relevant options supported by mix, and simply summing the percentages from each partition is not viable due to overlaps in the code covered by different partitions.
Thanks!