1#!/usr/bin/env sh 2#MISE description="run unit tests with test coverage" 3#MISE alias=["t:c"] 4 5cargo llvm-cov nextest --branch --summary-only 6cargo llvm-cov report --branch --html --output-dir coverage 7cargo llvm-cov report --branch --lcov --output-path coverage/lcov.info