-
Notifications
You must be signed in to change notification settings - Fork 236
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: use BlockId
superset over BlockNumberOrTag
where applicable
#1135
Conversation
…debug` were not being tested
…et to investigate failure cases
@@ -1107,7 +1107,7 @@ mod tests { | |||
} | |||
} | |||
|
|||
#[cfg(feature = "ws")] | |||
#[cfg(all(feature = "ws", not(windows)))] |
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.
Note ticket: #1136
# All features | ||
- "--all-features" |
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.
Test cases in trace
, debug
including others were actually not being tested by the CI
I think opting for an --all-features
CI job makes sense here as a general solution, solving issues that may arise on a case-by-case basis
BlockId
superset over BlockNumberOrTag
BlockId
superset over BlockNumberOrTag
where applicable
Motivation
Closes #1134
Solution
BlockId
where implementedget_block_receipts
as raised ineth_getBlockReceipts
should accept block hashes foundry-rs/foundry#8623block
for consistency--all-features
CI flag to make sure all features are actually tested,trace
/debug
(and presumably other) tests were not actually ran in the CI. Created [Bug] Investigate failingsubscribe_block_ws
andsubscribe_ws_boxed
tests on Windows #1136 to investigate failingsubscribe_block_ws
andsubscribe_ws_boxed
tests on Windows now requiring skipping.PR Checklist