-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add support for runAssertion, runAssertions, and runAssertionsForAsset APIs #10605
Conversation
0665000
to
9a6cba3
Compare
b5a6be0
to
9d2675a
Compare
dc3e573
to
8441a79
Compare
8441a79
to
b6daf8a
Compare
Added async flag |
urn: str, | ||
save_result: bool = True, | ||
parameters: Optional[Dict[str, str]] = {}, | ||
async_flag: bool = False, |
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.
why not just name this: "async"
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.
Oh, python doesn't like it I guess because it conflicts with its co-routine keywords (async/await).
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.
Only comment:
async_flag -> async is fine! It matches save_result better with this name :)
b6daf8a
to
77d4ada
Compare
77d4ada
to
086b231
Compare
086b231
to
5df05c6
Compare
5df05c6
to
2b21edd
Compare
As titled
Checklist
@jjoyce0510