Skip to content

Commit

Permalink
Add Foundry tests to coverage (#5098)
Browse files Browse the repository at this point in the history
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
  • Loading branch information
cairoeth and Amxx authored Jun 29, 2024
1 parent 9af280d commit ccc1103
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ coverage:
project:
default:
threshold: 1%
ignore:
- "test"
- "contracts/mocks"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"compile": "hardhat compile",
"compile:harnesses": "env SRC=./certora/harnesses hardhat compile",
"coverage": "env COVERAGE=true hardhat coverage",
"coverage": "scripts/checks/coverage.sh",
"docs": "npm run prepare-docs && oz-docs",
"docs:watch": "oz-docs watch contracts docs/templates docs/config.js",
"prepare": "git config --local core.hooksPath .githooks",
Expand Down
18 changes: 18 additions & 0 deletions scripts/checks/coverage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

set -euo pipefail

export COVERAGE=true
export FOUNDRY_FUZZ_RUNS=10

# Hardhat coverage
hardhat coverage

if [ "${CI:-"false"}" == "true" ]; then
# Foundry coverage
forge coverage --report lcov
# Remove zero hits
sed -i '/,0/d' lcov.info
fi

# Reports are then uploaded to Codecov automatically by workflow, and merged.

0 comments on commit ccc1103

Please sign in to comment.