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

Coverage test #735

Merged
merged 3 commits into from
Mar 21, 2025
Merged

Coverage test #735

merged 3 commits into from
Mar 21, 2025

Conversation

KaushikiAnand
Copy link
Contributor

  • 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.

@KaushikiAnand KaushikiAnand requested review from a team as code owners March 7, 2025 07:08
@crw crw added the enhancement label Mar 7, 2025
- name: Go test (Windows)
if: ${{runner.os == 'Windows'}}
run: |
go test -v -race -coverprofile="coverage.out" ./...
Copy link

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 ?

Copy link
Contributor Author

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.

Copy link

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

Copy link
Contributor Author

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.

Copy link
Contributor Author

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.

run: go tool cover -func=coverage.out
- name: Display coverage report (Windows)
if: ${{runner.os == 'Windows'}}
run: go tool cover -func=coverage.out
Copy link

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

Copy link
Contributor Author

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.

Copy link

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggested changes made

@KaushikiAnand KaushikiAnand requested a review from a user March 13, 2025 04:57
@KaushikiAnand KaushikiAnand merged commit c829697 into main Mar 21, 2025
13 checks passed
@KaushikiAnand KaushikiAnand deleted the coverage-test branch March 21, 2025 05:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants