From cec57f64f2b3dcee895854d61747fd3462604fc3 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 4 Sep 2024 11:02:28 -0300 Subject: [PATCH] chore: remove bdk repository related comment --- .github/workflows/code_coverage.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 4d965bb..f2ff106 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -38,12 +38,6 @@ jobs: - name: Install grcov run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi - name: Test - # WARNING: this is not testing the following features: test-esplora, test-hardware-signer, async-interface - # This is because some of our features are mutually exclusive, and generating various reports and - # merging them doesn't seem to be working very well. - # For more info, see: - # - https://github.com/bitcoindevkit/bdk/issues/696 - # - https://github.com/bitcoindevkit/bdk/pull/748#issuecomment-1242721040 run: cargo test -- --test-threads=1 - name: Run grcov run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info