I maintain an open source Python library, spaghetti, and we have recently migrated our testing+coverage from TravisCI/Appveyor+Coveralls to GitHub Actions+Codecov. I am very much happy with our choice to adopt Codecov, but I am having some trouble getting our codecov.yml to function properly (though this is most definitely my misunderstanding the parameters). Basically, what I would like to have is a delayed report to PRs until at least 24 jobs with the GitHub Actions matrix are complete (see matrix below). This is because the tests with only core dependencies skip ~5% of the coverage. Also I would like to increase the threshold from the default (0%) to 2%. I thought I had set these parameters correctly in the codecov.yml, but it doesn’t seem to be kicking in. Any review of the .yml and dive on how to fix it would be greatly appreciated.
@tom After implementing this codecov.yml, CodeCov is still commenting on the PR directly after the first build is complete, not waiting until 24 builds are complete. Maybe I am not understanding how the after_n_builds should behave. My interpretation is that after a PR is made CodeCov should wait until 24 builds (in my case) out a matrix of builds are completed before reporting the coverage/changes to the GitHub PR. Is this incorrect?