Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent codecov from publishing coverage report early #4269

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ruby_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
SKIP_AUTOMATIC_GEM_INSTALLATION: true # Disable the bundle install in bin/setup

on:
# Warning: changing run conditions could prevent coverage report in PR, see codecov.yml for `after_n_builds`
- push
- pull_request

Expand Down
10 changes: 10 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
codecov:
notify:
# do not notify until at least n builds have been uploaded from the CI pipeline
# rake_tests (push)
# rake_tests (pull_request)
# ruby_test x3 (push)
# ruby_test x3 (pull_request)
# cucumber_tests x2 (push)
# cucumber_tests x2 (pull_request)
after_n_builds: 12
Loading