Skip to content

Commit ac2fd86

Browse files
committed
ci: limit test threads to 1
1 parent 19bdeb1 commit ac2fd86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/code_coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# For more info, see:
4545
# - https://github.com/bitcoindevkit/bdk/issues/696
4646
# - https://github.com/bitcoindevkit/bdk/pull/748#issuecomment-1242721040
47-
run: cargo test
47+
run: cargo test -- --test-threads=1
4848
- name: Run grcov
4949
run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info
5050
- name: Generate HTML coverage report

.github/workflows/cont_integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ jobs:
6161
if: ${{ matrix.rust.clippy }}
6262
run: cargo clippy --all-targets --features ${{ matrix.features }} --no-default-features -- -D warnings
6363
- name: Test
64-
run: cargo test --features ${{ matrix.features }} --no-default-features
64+
run: cargo test --features ${{ matrix.features }} --no-default-features -- --test-threads=1

0 commit comments

Comments
 (0)