Skip to content

Commit

Permalink
test(host): ignore expensive cases
Browse files Browse the repository at this point in the history
  • Loading branch information
keroro520 committed Feb 7, 2025
1 parent 08a13cd commit 86f33ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions host/tests/test/aggregate_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use raiko_lib::consts::Network;
use raiko_lib::proof_type::ProofType;
use raiko_tasks::TaskStatus;

#[ignore]
#[tokio::test]
async fn test_v2_mainnet_aggregate_native() {
v2_mainnet_aggregate(Network::TaikoMainnet, ProofType::Native).await;
Expand Down
3 changes: 3 additions & 0 deletions host/tests/test/cancel_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use raiko_lib::consts::Network;
use raiko_lib::proof_type::ProofType;
use raiko_tasks::TaskStatus;

#[ignore]
#[test_log::test(tokio::test)]
pub async fn test_v2_mainnet_native_cancel() {
let api_version = "v2";
Expand Down Expand Up @@ -45,6 +46,7 @@ pub async fn test_v2_mainnet_native_cancel() {
assert!(matches!(status, api::v2::CancelStatus::Ok),);
}

#[ignore]
#[test_log::test(tokio::test)]
pub async fn test_v2_mainnet_native_cancel_non_registered() {
let api_version = "v2";
Expand All @@ -67,6 +69,7 @@ pub async fn test_v2_mainnet_native_cancel_non_registered() {
);
}

#[ignore]
#[test_log::test(tokio::test)]
pub async fn test_v2_mainnet_native_cancel_then_register() {
let api_version = "v2";
Expand Down
1 change: 1 addition & 0 deletions host/tests/test/prove_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use raiko_lib::consts::Network;
use raiko_lib::proof_type::ProofType;
use raiko_tasks::TaskStatus;

#[ignore]
#[test_log::test(tokio::test)]
pub async fn test_v2_mainnet_native_prove() {
let api_version = "v2";
Expand Down

0 comments on commit 86f33ee

Please sign in to comment.