-
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 suites #1164
Fix python suites #1164
Conversation
@@ -2125,6 +2125,7 @@ class TestSuite(Suite): | |||
let pythonRegex2 = new RegExp( | |||
'^\\s*(if|def|while|else|elif|class).*:\\s*$', | |||
) | |||
let pythonRegex3 = new RegExp('\\(f"') // f strings |
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.
(f"
doesn't exist anywhere in our ruby code
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1164 +/- ##
==========================================
- Coverage 75.00% 74.98% -0.02%
==========================================
Files 595 595
Lines 43914 43917 +3
Branches 757 758 +1
==========================================
- Hits 32939 32933 -6
- Misses 10892 10900 +8
- Partials 83 84 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
if ( | ||
result.exceptions and group_class.abort_on_exception | ||
) or result.stopped: | ||
raise StopScript |
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.
Lots of bad indentation was breaking running Groups and Suites
Quality Gate passedIssues Measures |
No description provided.