]> Untitled Git - bdk/commitdiff
codecov: slightly change the test features
authorDaniela Brozzoni <danielabrozzoni@protonmail.com>
Sat, 10 Sep 2022 13:12:59 +0000 (15:12 +0200)
committerDaniela Brozzoni <danielabrozzoni@protonmail.com>
Sat, 10 Sep 2022 16:11:17 +0000 (18:11 +0200)
- Remove default and minimal, as they are redundant
- Use lexicographic order

.github/workflows/code_coverage.yml

index 9f5cfd0f362e25e6226381ebefc05d8a8a1b5b37..f0408b434634e31f48a06a4ae86bdc5271109aef 100644 (file)
@@ -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