-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat(eigen-client-extra-features): Replace third party dependant tests with mock tests #356
feat(eigen-client-extra-features): Replace third party dependant tests with mock tests #356
Conversation
Ignore test Co-authored-by: Gianbelinche <39842759+gianbelinche@users.noreply.github.com>
Co-authored-by: Gianbelinche <39842759+gianbelinche@users.noreply.github.com>
@@ -291,6 +300,7 @@ mod tests { | |||
assert_eq!(retrieved_data.unwrap(), data); | |||
} | |||
|
|||
#[ignore = "remote dependency"] |
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.
replace it with something more descriptive like:
"Depends on external RPC node"
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.
Done!
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.
See comments
75090b6
into
eigen-client-extra-features
What ❔
zksync_da_clients
to prevent a CI failure in case of third party issues (no connection to rpc used in tests)MockVerifierClient
when running on the CI.cargo test -p zksync_da_clients -- --ignored
Why ❔
Prevent CI running longer that it should, or even failing in case a third party service is not available.
Checklist
zkstack dev fmt
andzkstack dev lint
.