-
Notifications
You must be signed in to change notification settings - Fork 622
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
Coverage test #735
Coverage test #735
Conversation
KaushikiAnand
commented
Mar 7, 2025
- I have added unit test coverage in the go-multierror.yml workflow
- The unit test coverage change was done to help understand the defects early in lifecycle and come up with a good solution for it.
- name: Go test (Windows) | ||
if: ${{runner.os == 'Windows'}} | ||
run: | | ||
go test -v -race -coverprofile="coverage.out" ./... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: Why did we need to add difference checks for windows and other OS, was this not working fine before ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes on running the cmd "go test -v -race -coverprofile=coverage.out ./...", the coverage.out was not being generated for windows. I found this error while working on go-multierror repo and this solution solved the error. So that is why i wrote different checks for windows and other OS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you check if go test -v -race -coverprofile="coverage.out" ./...
can be used for other OS ? because adding if conditions in workflow will decrease readability
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay will look into it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go test -v -race -coverprofile="coverage.out" ./... this can bee used for other OS also. so changed changed it accordingly.
.github/workflows/checks.yml
Outdated
run: go tool cover -func=coverage.out | ||
- name: Display coverage report (Windows) | ||
if: ${{runner.os == 'Windows'}} | ||
run: go tool cover -func=coverage.out |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: Why do we need different statements here ? Both the run commands are same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for windows after run cmd i have added a "shell: cmd" as it runs it in a shell env instead of powershell.
When running the this cmd "go tool cover -func=coverage.out", the display of the coverage report was not occurring, so in order to solve this error, i had to write my ci workflow in this way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The coverage display for any one of the OS should be fine because the test coverage will be independent of the OS. You can add just the following code and add a comment the coverage might not be visible for windows
- name: Display coverage report
run: go tool cover -func=coverage.out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggested changes made