We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e404089 commit 8608109Copy full SHA for 8608109
.github/workflows/code_coverage.yml
@@ -40,12 +40,6 @@ jobs:
40
- name: Install grcov
41
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
42
- name: Test
43
- # WARNING: this is not testing the following features: test-esplora, test-hardware-signer, async-interface
44
- # This is because some of our features are mutually exclusive, and generating various reports and
45
- # merging them doesn't seem to be working very well.
46
- # For more info, see:
47
- # - https://github.com/bitcoindevkit/bdk/issues/696
48
- # - https://github.com/bitcoindevkit/bdk/pull/748#issuecomment-1242721040
49
run: cargo test -- --test-threads=1
50
- name: Run grcov
51
run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info
0 commit comments