The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/solidity/coverage.sh

12 lines
370 B

#!/bin/bash
# exit on error
set -e
# exclude FastTokenRouter until https://github.com/hyperlane-xyz/hyperlane-monorepo/issues/2806 is resolved
forge coverage \
--report lcov \
--report summary \
--no-match-coverage "(test|mock|node_modules|script|Fast)" \
--no-match-test testFork \
--ir-minimum # https://github.com/foundry-rs/foundry/issues/3357