From: Daniela Brozzoni Date: Sat, 10 Sep 2022 13:12:59 +0000 (+0200) Subject: codecov: slightly change the test features X-Git-Tag: v0.23.0-rc.1~14^2~1 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/enum.FileStoreError.html?a=commitdiff_plain;h=c3a7bbb3ff936031200a7b70d5d9287f7f242513;p=bdk codecov: slightly change the test features - Remove default and minimal, as they are redundant - Use lexicographic order --- diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 9f5cfd0f..f0408b43 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -38,7 +38,7 @@ jobs: - name: Install grcov run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi - name: Test - run: cargo test --features default,minimal,all-keys,compact_filters,key-value-db,compiler,sqlite,sqlite-bundled,test-electrum,verify,test-rpc + run: cargo test --features all-keys,compact_filters,compiler,key-value-db,sqlite,sqlite-bundled,test-electrum,test-rpc,verify - name: Run grcov run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info - name: Generate HTML coverage report