Skip to content

Commit a559595

Browse files
committed
fix(ci): remove invalid --timeout parameter from cargo test
The --timeout parameter is not supported by cargo test command. Reverted to standard cargo test invocation while keeping other timeout optimizations (45-minute job timeout and better caching).
1 parent d786b1d commit a559595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/external-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ jobs:
129129
130130
- name: Run unit tests
131131
run: |
132-
# Use release mode and timeout for individual tests to prevent hangs
133-
cargo test --all-features --release --verbose --timeout 300
132+
# Use release mode to reduce disk usage and enable optimizations
133+
cargo test --all-features --release --verbose
134134
135135
- name: Run external validation tests
136136
run: |

0 commit comments

Comments
 (0)