Skip to content

Commit

Permalink
disable failing tests until after restoring governance functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Sep 23, 2023
1 parent 964a3d0 commit 1b09e41
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions crates/bin/pcli/tests/network_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ fn load_wallet_into_tmpdir() -> TempDir {
tmpdir
}

#[allow(dead_code)]
fn load_string_to_file(content: String, tmpdir: &TempDir) -> NamedTempFile {
let mut file = NamedTempFile::new_in(tmpdir.path()).unwrap();
use std::io::Write;
Expand Down Expand Up @@ -781,6 +782,8 @@ fn swap() {
// .stdout(predicate::str::is_match(format!(r"1\s*1000penumbra")).unwrap());
// }

/*
// TODO: re-enable this after restoring governance functionality.
#[ignore]
#[test]
fn governance_submit_proposal() {
Expand Down Expand Up @@ -830,6 +833,7 @@ fn governance_submit_proposal() {
.timeout(std::time::Duration::from_secs(TIMEOUT_COMMAND_SECONDS));
proposals_cmd.assert().success();
}
*/

#[ignore]
#[test]
Expand Down Expand Up @@ -1199,6 +1203,8 @@ fn test_orders() {
withdraw_cmd.assert().success();
}

/*
// TODO: re-enable this after restoring governance functionality.
#[ignore]
#[test]
fn delegate_submit_proposal_and_vote() {
Expand Down Expand Up @@ -1312,3 +1318,4 @@ fn delegate_submit_proposal_and_vote() {
.assert()
.success();
}
*/

0 comments on commit 1b09e41

Please sign in to comment.