Skip to content

Commit

Permalink
docs: to README.md add tests troubleshooting (run in series)
Browse files Browse the repository at this point in the history
  • Loading branch information
riverKanies committed Nov 18, 2024
1 parent 3bc45b5 commit 4cbab45
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,20 @@ cargo update -p indexmap --precise "2.5.0"
cargo update -p security-framework-sys --precise "2.11.1"
```

## Troubleshooting Tests

If tests are failing with `cargo test` it could be an issue related to tests that use bitcoind or electrsd running in parallel. To force tests to run in series you can try:

```
cargo test -- --test-threads=1
```

or

```
RUST_TEST_THREADS=1 cargo test
```

## License

Licensed under either of
Expand Down

0 comments on commit 4cbab45

Please sign in to comment.