-
Notifications
You must be signed in to change notification settings - Fork 96
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
Use go test as unit test runner #2613
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2613 +/- ##
=======================================
Coverage ? 88.43%
=======================================
Files ? 104
Lines ? 7880
Branches ? 0
=======================================
Hits ? 6969
Misses ? 854
Partials ? 57 ☔ View full report in Codecov by Sentry. |
Hmm, code coverage dropped significantly. Looks like it's considering fake files now? |
should we try to exclude them? |
I'm trying to figure out how to do that. Doesn't seem very straightforward. Not sure how it worked with ginkgo... |
I might just be able to configure codecov to ignore certain paths. |
284ff25
to
0500c7b
Compare
Problem: Switching to using ginkgo as the test runner caused some issues with verbose output and difficulty finding test failures. This could also be exacerbated by the fact that we mix standard go test style with ginkgo framework tests. Solution: For now, switch back to using go test as the runner, since the output is cleaner and easier to find errors.
0500c7b
to
a38de0f
Compare
Problem: Switching to using ginkgo as the test runner caused some issues with verbose output and difficulty finding test failures. This could also be exacerbated by the fact that we mix standard go test style with ginkgo framework tests. Solution: For now, switch back to using go test as the runner, since the output is cleaner and easier to find errors.
Problem: Switching to using ginkgo as the test runner caused some issues with verbose output and difficulty finding test failures. This could also be exacerbated by the fact that we mix standard go test style with ginkgo framework tests.
Solution: For now, switch back to using go test as the runner, since the output is cleaner and easier to find errors.
Closes #2584
Future work: #2612
Checklist
Before creating a PR, run through this checklist and mark each as complete.
Release notes
If this PR introduces a change that affects users and needs to be mentioned in the release notes,
please add a brief note that summarizes the change.