-
Notifications
You must be signed in to change notification settings - Fork 52
chore(starknet_l1_provider): move flow test into unit test #5288
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
chore(starknet_l1_provider): move flow test into unit test #5288
Conversation
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.
Reviewed 3 of 3 files at r1, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @giladchase)
ad2d735
to
2bb9170
Compare
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.
Reviewed 1 of 1 files at r2, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @giladchase)
2bb9170
to
3522af7
Compare
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.
Reviewed 1 of 1 files at r3, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @giladchase)
Merge activity
|
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.
Reviewable status:
complete! all files reviewed, all discussions resolved (waiting on @giladchase)
Looks like our test runner doesn't support running integration tests that depend on the crate with `testing` feature, so we can only use integration tests that don't need `testing` on the same crate :( This is almost all a MOVE with only one required change: the bootstrap_e2e has gone stale and is broken, so i added an `ignore`. The reason is that it wasn't run in the CI since required-features doesn't add features, it just doesn't run the test if the feature isn't there :/ Will fix the test in an upcoming PR.
3522af7
to
f674281
Compare
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.
Reviewed 1 of 1 files at r4, all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on @giladchase)
Looks like our test runner doesn't support running integration tests that depend on the crate with `testing` feature, so we can only use integration tests that don't need `testing` on the same crate :( This is almost all a MOVE with only one required change: the bootstrap_e2e has gone stale and is broken, so i added an `ignore`. The reason is that it wasn't run in the CI since required-features doesn't add features, it just doesn't run the test if the feature isn't there :/ Will fix the test in an upcoming PR. Co-authored-by: Gilad Chase <gilad@starkware.com>
Looks like our test runner doesn't support running integration tests
that depend on the crate with
testing
feature, so we can only useintegration tests that don't need
testing
on the same crate :(This is almost all a MOVE with only one required change: the
bootstrap_e2e has gone stale and is broken, so i added an
ignore
.The reason is that it wasn't run in the CI since required-features
doesn't add features, it just doesn't run the test if the feature isn't
there :/
Will fix the test in an upcoming PR.