-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Feat: populate actual count of failures in run_results.json
for passing tests
#9657
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the contributing guide. |
@tbog357 This sounds reasonable - could I ask you to open an issue explaining the need in slightly more detail? (I get it as, you may have |
run_results.json
for passing tests
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9657 +/- ##
==========================================
- Coverage 88.92% 88.87% -0.05%
==========================================
Files 180 180
Lines 22785 22786 +1
==========================================
- Hits 20261 20251 -10
- Misses 2524 2535 +11
Flags with carried forward coverage won't be shown. Click here to find out more.
|
resolves #9808
Problem
I build a pipeline using dbt, which has tests run daily. I need to visualize those charts using the results returned in the run_results.json file. But turnout when tests are passed, the number of failures wasn't being populated.
So it would be nice if we could fetch failures even if tests are passed.
Solution
Return failures even if tests are passed.
Checklist