-
Notifications
You must be signed in to change notification settings - Fork 4
Adding coverage reports to pipeline #20
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
Draft
Irakus
wants to merge
27
commits into
main
Choose a base branch
from
code_coverage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…/orch-utils into code_coverage
…/orch-utils into code_coverage
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes updates to the CI workflow and enhancements to the Go test configuration. The most important changes involve extending the timeout for Go tests, adding steps to handle code coverage reports, and improving the test command options in
mage
.CI Workflow Updates:
.github/workflows/lint-test-build-publish.yml
: Increased the timeout for thetest-go
job from 15 to 25 minutes to allow for longer test runs..github/workflows/lint-test-build-publish.yml
: Added steps to copy all coverage reports to a single directory and upload them as artifacts. This ensures that coverage data is collected even if some tests fail.Go Test Configuration Enhancements:
mage/test.go
: Enhanced the Go test command by adding options to fail on pending tests, fail on empty tests, keep going on errors, and include code coverage. This makes the test process more robust and provides better coverage information.This pull request includes changes to improve code coverage reporting and test configuration. The most important changes are the addition of steps to collect and upload coverage reports in the GitHub Actions workflow, and the inclusion of coverage options in the Go test command.Improvements to coverage reporting:
.github/workflows/lint-test-build-publish.yml
: Added steps to copy all coverage reports to a single directory, compress them into a tar file, and upload the tar file as an artifact.Enhancements to test configuration:
mage/test.go
: Included coverage options--cover
and-coverpkg=./...
in the Go test command to enable code coverage reporting.