Skip to content

Commit

Permalink
mark tests as nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
stedfn committed Feb 11, 2025
1 parent b4c4c2f commit ac40cd9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@ const NUM_VALIDATORS: usize = NUM_BLOCK_AND_CHUNK_PRODUCERS + NUM_CHUNK_VALIDATO
const NUM_ACCOUNTS: usize = NUM_VALIDATORS + NUM_RPC;

#[test]
#[cfg(feature = "nightly")]
fn test_global_contract_by_hash() {
let (env, accounts, contract, rpc_id) = setup_global_contract_test();
let deploy_mode = GlobalContractDeployMode::CodeHash;
test_global_contract(env, deploy_mode, accounts.as_slice(), &contract, rpc_id);
}

#[test]
#[cfg(feature = "nightly")]
fn test_global_contract_by_account_id() {
let (env, accounts, contract, rpc_id) = setup_global_contract_test();
let deploy_mode = GlobalContractDeployMode::AccountId;
Expand Down

0 comments on commit ac40cd9

Please sign in to comment.