-
Notifications
You must be signed in to change notification settings - Fork 20
Re-enable disabled tests requiring bridge #1083
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
base: main
Are you sure you want to change the base?
Conversation
Commit: 469d57e SP1 Execution Results
|
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #1083 +/- ##
==========================================
+ Coverage 72.74% 74.49% +1.75%
==========================================
Files 448 500 +52
Lines 37087 42183 +5096
==========================================
+ Hits 26979 31425 +4446
- Misses 10108 10758 +650
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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.
ACK 34fee63
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.
looks good, some minor cleanup
print(path) | ||
priv_keys = [] | ||
opkeys = sorted( | ||
filter(lambda file: file.startswith("opkey"), os.listdir(path)), | ||
key=lambda x: int("".join(filter(str.isdigit, x))), | ||
) | ||
print(opkeys) |
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.
Are these prints needed? If so then use logging
so they get picked up properly.
Edit: oh I see these were from before this PR, it'd be good to convert over the prints in these updated tests
receipt = wait_until_with_value( | ||
check_transaction_and_blocks, | ||
lambda result: not isinstance(result, Exception), | ||
error_with="Transaction receipt for txid not available", | ||
timeout=60, | ||
step=2, | ||
) |
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.
This is basically doing a "wait until EVM tx included in block" operation. If there isn't already waiter for this then can we add it to one so it's available everywhere?
Description
for https://alpenlabs.atlassian.net/browse/STR-1727
Type of Change
Notes to Reviewers
Checklist
in the body of this PR.
Related Issues