codecov: slightly change the test features

- Remove default and minimal, as they are redundant
- Use lexicographic order
This commit is contained in:
Daniela Brozzoni 2022-09-10 15:12:59 +02:00
parent 1c4d47825b
commit c3a7bbb3ff
No known key found for this signature in database
GPG Key ID: 7DE4F1FDCED0AB87

View 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