-
Notifications
You must be signed in to change notification settings - Fork 32
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
Fix python stack traces #1554
Fix python stack traces #1554
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1554 +/- ##
=======================================
Coverage 77.02% 77.03%
=======================================
Files 611 611
Lines 46000 46006 +6
Branches 800 802 +2
=======================================
+ Hits 35431 35440 +9
+ Misses 10481 10478 -3
Partials 88 88
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Tested with a simple script:
Same output in both Ruby and Python Also tested Suite with a simple divide by 0 error and the stack trace looks good. The only issue is trying to raise a full stack in a much lower level method. It appears like the full stack trace isn't there like it is in Ruby. For example I tried raising an error in
The only thing I can think is it has something to do with the |
Fix suite playwright tests |
Quality Gate passedIssues Measures |
closes #1552
closes #1548