-
Notifications
You must be signed in to change notification settings - Fork 51
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
Sync e2e tests #221
Merged
Sync e2e tests #221
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
aa2d9e8
sync e2e test
cchudant 0bbbd99
ci: coverage in ci
cchudant 45aae02
ci: try to make github ci happy
cchudant 3a34931
ci: trigger github ci
cchudant 38a9b6b
ci: use mold for linking
cchudant d638a63
ci: rust toolchain on coverage
cchudant ab7d81b
ci: rust toolchain fix
cchudant 7b4ffe3
e2e: multiple ports
cchudant e346bab
try to make ci work
cchudant 83ce6e3
try to make ci work
cchudant 50a2ed6
try to make ci work
cchudant 906283e
toml lint
cchudant b92e70c
remove rust-test from the ci as coverage exists now
cchudant 6451e4d
Merge branch 'main' into e2e
antiyro 68b38bd
ci: display coverage, remove rust-test.yml
cchudant 4ded593
Merge remote-tracking branch 'origin/main' into e2e
cchudant 26d8ff4
pretty please
cchudant c50a90e
merge confict resolution error
cchudant 1c189d8
readd node-bindings in alloy dependency
cchudant 334300f
fix l1 service startup
cchudant d896ebe
ci: fix (maybe?)
cchudant 1ec2a1d
ci: fix (maybe?)
cchudant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/// Parameters used to config telemetry. | ||
/// Parameters used to config block production. | ||
#[derive(Clone, Debug, clap::Parser)] | ||
pub struct BlockProductionParams { | ||
/// Disable the block production service. | ||
/// The block production service is only enabled with the authority (sequencer) mode. | ||
#[arg(long, alias = "no-disabled")] | ||
#[arg(long, alias = "no-block-production")] | ||
pub block_production_disabled: bool, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "dc-e2e-tests" | ||
authors.workspace = true | ||
homepage.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
version.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
|
||
anyhow.workspace = true | ||
env_logger.workspace = true | ||
lazy_static.workspace = true | ||
log.workspace = true | ||
reqwest.workspace = true | ||
rstest.workspace = true | ||
starknet-core.workspace = true | ||
starknet-providers.workspace = true | ||
tempfile.workspace = true | ||
tokio = { workspace = true, features = ["rt", "macros"] } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
same as above