Open
Description
To reduce the CI pipeline deployment time for one of my company's Go libraries, I added support for only running unit tests on packages that had changes in each PR, but this means that only those test cases are reported in the code coverage file, which is then uploaded to Coveralls. This results in incorrect coverage reports, since Coveralls assumes those are the only tests we have across our whole library.
Is there a way to push incremental code coverage reports to Coveralls with the universal coverage reporter?