Skip to content

Commit 73dc604

Browse files
committed
fix: increase timeout?
1 parent ec05d37 commit 73dc604

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
213213

214214
- name: Run cargo-nextest
215-
run: cargo nextest run --release --locked --test-threads 4
215+
run: cargo nextest run --release --locked
216216

217217
mpc-pytests:
218218
name: "MPC Node: pytests"

crates/node/src/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ mod research;
4747
mod resharing;
4848

4949
const DEFAULT_BLOCK_TIME: std::time::Duration = std::time::Duration::from_millis(300);
50-
const DEFAULT_MAX_PROTOCOL_WAIT_TIME: std::time::Duration = std::time::Duration::from_secs(30);
51-
const DEFAULT_MAX_SIGNATURE_WAIT_TIME: std::time::Duration = std::time::Duration::from_secs(30);
50+
const DEFAULT_MAX_PROTOCOL_WAIT_TIME: std::time::Duration = std::time::Duration::from_secs(60);
51+
const DEFAULT_MAX_SIGNATURE_WAIT_TIME: std::time::Duration = std::time::Duration::from_secs(60);
5252

5353
/// Data needed to start running a test node.
5454
pub struct OneNodeTestConfig {

0 commit comments

Comments
 (0)