Skip to content

Commit

Permalink
cluster test (MystenLabs#2379)
Browse files Browse the repository at this point in the history
* e2e test

* comments
  • Loading branch information
longbowlu authored Jun 2, 2022
1 parent a094316 commit 647123f
Show file tree
Hide file tree
Showing 7 changed files with 653 additions and 15 deletions.
206 changes: 192 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"crates/sui",
"crates/sui-adapter",
"crates/sui-adapter-transactional-tests",
"crates/sui-cluster-test",
"crates/sui-config",
"crates/sui-core",
"crates/sui-faucet",
Expand Down
26 changes: 26 additions & 0 deletions crates/sui-cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "sui-cluster-test"
version = "0.1.0"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"

[dependencies]
futures = "0.3.21"
serde_json = "1.0.80"
tempfile = "3.3.0"
tokio = { version = "1.17.0", features = ["full"] }
async-trait = "0.1.53"
serde_with = { version = "1.13.0", features = ["hex"] }
tracing = { version = "0.1.34", features = ["log"] }
clap = { version = "3.1.14", features = ["derive"] }
reqwest = { version = "0.11.10", features = ["blocking", "json"] }
telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "988cad6aaafac84d52a93227a16867bf27c1ea4c" }

sui-faucet = { path = "../sui-faucet" }
sui = { path = "../sui" }
sui-core = { path = "../sui-core" }
sui-types = { path = "../sui-types" }
sui-json = { path = "../sui-json" }
workspace-hack = { path = "../workspace-hack"}
Loading

0 comments on commit 647123f

Please sign in to comment.