Skip to content

Commit 61ff68e

Browse files
committed
chore: removes integration tests from action
1 parent b9d5ae7 commit 61ff68e

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55

66
env:
77
COVERAGE_SENSITIVITY_PERCENT: 1
8-
MAINNET_RPC: ${{ secrets.MAINNET_RPC }}
9-
SEPOLIA_RPC: ${{ secrets.SEPOLIA_RPC }}
108

119
jobs:
1210
base-coverage:
@@ -42,9 +40,7 @@ jobs:
4240

4341
- name: Run base branch coverage
4442
if: steps.cache-base.outputs.cache-hit != 'true'
45-
env:
46-
FOUNDRY_FUZZ_RUNS: 256
47-
run: yarn coverage --threads 1
43+
run: yarn coverage
4844

4945
- name: Prepare cached base lcov
5046
if: steps.cache-base.outputs.cache-hit != 'true'
@@ -99,9 +95,7 @@ jobs:
9995
fi
10096
10197
- name: Run current branch coverage
102-
env:
103-
FOUNDRY_FUZZ_RUNS: 256
104-
run: yarn coverage --threads 1
98+
run: yarn coverage
10599

106100
- name: Setup LCOV
107101
uses: hrishikesh-kadam/setup-lcov@v1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"scripts": {
1414
"build": "forge build",
1515
"build:optimized": "FOUNDRY_PROFILE=optimized forge build",
16-
"coverage": "forge coverage --report summary --report lcov",
16+
"coverage": "forge coverage --report summary --report lcov --match-path 'test/unit/*'",
1717
"deploy:mainnet": "bash -c 'source .env && forge script DeployL2Resolver --rpc-url mainnet --account $MAINNET_DEPLOYER_NAME --broadcast --verify --chain mainnet -vvvvv'",
1818
"deploy:sepolia": "bash -c 'source .env && forge script DeployL2Resolver --rpc-url sepolia --account $SEPOLIA_DEPLOYER_NAME --broadcast --verify --chain sepolia -vvvvv'",
1919
"lint:bulloak": "find test/unit -name '*.tree' | xargs bulloak check",

0 commit comments

Comments
 (0)