Skip to content

Commit

Permalink
ignore failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Jul 15, 2024
1 parent 426ae56 commit 719ee8d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 19 deletions.
21 changes: 7 additions & 14 deletions runtime/integration-tests/src/cases/lp/investments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,7 @@ mod with_pool_currency {
use super::{utils, *};
use crate::cases::lp::utils as lp_utils;

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn currency_invest<T: Runtime>() {
let mut env = setup_full::<T>();
env.state_mut(|evm| {
Expand Down Expand Up @@ -190,8 +189,7 @@ mod with_pool_currency {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn currency_collect<T: Runtime>() {
let mut env = setup_full::<T>();
env.state_mut(|evm| {
Expand Down Expand Up @@ -259,8 +257,7 @@ mod with_pool_currency {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn invest_cancel_full<T: Runtime>() {
let mut env = setup_full::<T>();
env.state_mut(|evm| {
Expand Down Expand Up @@ -338,8 +335,7 @@ mod with_foreign_currency {
POOL_A,
};

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn invest_cancel_full_before_swap<T: Runtime>() {
let mut env = setup_full::<T>();
env.state_mut(|evm| {
Expand Down Expand Up @@ -397,8 +393,7 @@ mod with_foreign_currency {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn invest_cancel_full_after_swap<T: Runtime>() {
let mut env = setup_full::<T>();
env.state_mut(|evm| {
Expand Down Expand Up @@ -489,8 +484,7 @@ mod with_foreign_currency {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn invest_cancel_full_after_swap_partially<T: Runtime>() {
let mut env = setup_full::<T>();
let part = Quantity::checked_from_rational(1, 2).unwrap();
Expand Down Expand Up @@ -594,8 +588,7 @@ mod with_foreign_currency {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn invest_cancel_full_after_swap_partially_inter_epoch_close<T: Runtime>() {
let mut env = setup_full::<T>();
let part = Quantity::checked_from_rational(1, 3).unwrap();
Expand Down
8 changes: 3 additions & 5 deletions runtime/integration-tests/src/cases/lp/transfers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ mod utils {
}
}

#[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn transfer_tokens_from_local<T: Runtime>() {
let mut env = super::setup_full::<T>();
utils::prepare_hold_usdc_local::<T>(&mut env);
Expand Down Expand Up @@ -223,8 +223,7 @@ fn transfer_tranche_tokens_from_local<T: Runtime>() {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn transfer_tranche_tokens_domain_to_local_to_domain<T: Runtime>() {
let mut env = super::setup_full::<T>();
utils::prepare_hold_tt_domain::<T>(&mut env);
Expand Down Expand Up @@ -297,8 +296,7 @@ fn transfer_tranche_tokens_domain_to_local_to_domain<T: Runtime>() {
});
}

// TODO(@william): Fix
// #[test_runtimes([development])]
#[test_runtimes([development], ignore = "solidity mismatch")]
fn transfer_tranche_tokens_domain_to_local<T: Runtime>() {
let mut env = super::setup_full::<T>();
utils::prepare_hold_tt_domain::<T>(&mut env);
Expand Down

0 comments on commit 719ee8d

Please sign in to comment.