File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 38
38
- name : Install grcov
39
39
run : if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
40
40
- name : Test
41
- # WARNING: this is not testing the following features: test-esplora, test-hardware-signer, async-interface
42
- # This is because some of our features are mutually exclusive, and generating various reports and
43
- # merging them doesn't seem to be working very well.
44
- # For more info, see:
45
- # - https://github.com/bitcoindevkit/bdk/issues/696
46
- # - https://github.com/bitcoindevkit/bdk/pull/748#issuecomment-1242721040
47
41
run : cargo test -- --test-threads=1
48
42
- name : Run grcov
49
43
run : mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info
You can’t perform that action at this time.
0 commit comments