Skip to content

Commit 08c2f53

Browse files
committed
ignore very long tests
1 parent f8dd841 commit 08c2f53

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: dtolnay/rust-toolchain@stable
2828
- name: Test ${{matrix.os}}
29-
run: cargo test --workspace --all-features --no-fail-fast
29+
run: cargo test --workspace --all-features --no-fail-fast -- --include-ignored

commit_verify/src/mpc/tree.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ mod test {
291291
}
292292

293293
#[test]
294+
#[ignore = "should be executed alone for performance reasons"]
294295
fn tree_huge() {
295296
// Tree with 8192 protocol-messages: depth 23, cofactor 103. Serialized length
296297
// 1081361 bytes. Takes 71589 msecs to generate
@@ -372,6 +373,7 @@ mod test {
372373
}
373374

374375
#[test]
376+
#[ignore = "should be executed alone for performance reasons"]
375377
fn scalability() {
376378
let mut depths = vec![];
377379
let mut cofacs = vec![];

0 commit comments

Comments
 (0)