#!/bin/sh cargo test --no-run -- -C link-dead-code || exit 1 LD_LIBRARY_PATH=./kcov find ./target/debug -maxdepth 1 -type f -executable -exec ./kcov/kcov --exclude-path /usr/lib ./target/cov --verify {} \; || exit 1 google-chrome ./target/cov/index.html # LD_LIBRARY_PATH=./kcov bash <(curl -s https://codecov.io/bash) -s ./target/cov -t TOKEN