From f7cc1896b9a7b4fc53d4d08a3ae552be48bd1e39 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 13 Oct 2025 10:23:30 +1100 Subject: [PATCH] fix: remove fuzz tests from CI run --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1695f3d..3fdb8a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: )" >> $GITHUB_ENV - name: "Run the tests" - run: "forge test" + run: "forge test --no-match-test \"^testFuzz\"" - name: "Add test summary" run: | @@ -151,7 +151,7 @@ jobs: run: "pnpm install" - name: "Generate the coverage report using the unit and the integration tests" - run: 'forge coverage --match-path "test/**/*.sol" --report lcov' + run: 'forge coverage --match-path "test/**/*.sol" --no-match-test \"^testFuzz\"" --report lcov' - name: "Upload coverage report to Codecov" uses: "codecov/codecov-action@v3"