Skip to content

Commit

Permalink
implement update proposal test
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Nov 25, 2021
1 parent ec7a9a8 commit a161011
Show file tree
Hide file tree
Showing 11 changed files with 422 additions and 45 deletions.
232 changes: 206 additions & 26 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions iapyx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ rand_core = "0.6"
itertools = "0.9.0"
cryptoxide = "0.3.2"
ed25519-bip32 = "^0.3.1"
jormungandr-testing-utils ={ git = "https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-lib = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-testing-utils ={ git = "https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jormungandr-lib = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
catalyst-toolbox = { git = "https://github.com/input-output-hk/catalyst-toolbox.git", branch = "catalyst-fund7"}
valgrind = { path = "../valgrind"}
Expand Down
11 changes: 6 additions & 5 deletions integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
jormungandr-scenario-tests = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-integration-tests = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-testing-utils = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-lib = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jcli = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "catalyst-fund7" }
jormungandr-scenario-tests = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jormungandr-integration-tests = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jormungandr-testing-utils = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jormungandr-lib = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
jcli = { git ="https://github.com/input-output-hk/jormungandr.git", branch = "fix_setup" }
vit-servicing-station-tests = { git = "https://github.com/input-output-hk/vit-servicing-station.git", branch = "catalyst-fund7" }
vit-servicing-station-lib = { git = "https://github.com/input-output-hk/vit-servicing-station.git", branch = "catalyst-fund7" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch="master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "catalyst-fund7" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "catalyst-fund7" }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "catalyst-fund7" }
chain-ser = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "catalyst-fund7" }
vitup = { path = "../vitup"}
Expand Down
3 changes: 2 additions & 1 deletion integration-tests/src/backend/features/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mod batch;
mod persistent_log;
//mod persistent_log;
mod update_proposal;
mod votes_history;
Loading

0 comments on commit a161011

Please sign in to comment.