From a60759f67725702ef57ae4abb98c60eb4831d42d Mon Sep 17 00:00:00 2001 From: "clandestine.eth" <96172957+0xClandestine@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:02:49 -0500 Subject: [PATCH] refactor: show test progress --- .github/workflows/continuous-fuzzing.yml | 2 +- .github/workflows/forge-test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-fuzzing.yml b/.github/workflows/continuous-fuzzing.yml index fcd7727723..7d78942787 100644 --- a/.github/workflows/continuous-fuzzing.yml +++ b/.github/workflows/continuous-fuzzing.yml @@ -39,4 +39,4 @@ jobs: id: build - name: Run unit and integration tests - run: forge test \ No newline at end of file + run: forge test --show-progress \ No newline at end of file diff --git a/.github/workflows/forge-test.yml b/.github/workflows/forge-test.yml index 4433fb1f44..db36850ccb 100644 --- a/.github/workflows/forge-test.yml +++ b/.github/workflows/forge-test.yml @@ -39,9 +39,9 @@ jobs: id: build - name: Run unit and integration tests - run: forge test + run: forge test --show-progress - name: Run integration mainnet fork tests - run: forge test --match-contract Integration + run: forge test --match-contract Integration --show-progress env: FOUNDRY_PROFILE: "forktest"