Remove DO_COV

We have test coverage by way of `coveralls` now. Remove the old stale
`DO_COV` stuff.

Fix: #1853
This commit is contained in:
Tobin C. Harding 2024-01-23 14:25:57 +11:00
parent d08d3efdfa
commit 1fe90223aa
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
2 changed files with 0 additions and 6 deletions

View File

@ -21,7 +21,6 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Running test script
env:
DO_COV: true
AS_DEPENDENCY: false
DO_DOCS: true
DO_FEATURE_MATRIX: true

View File

@ -4,11 +4,6 @@ set -ex
FEATURES="std rand-std rand serde secp-recovery bitcoinconsensus-std base64 bitcoinconsensus"
if [ "$DO_COV" = true ]
then
export RUSTFLAGS="-C link-dead-code"
fi
cargo --version
rustc --version