From 3710d25708359f719cf60d883b6290eb25d6542c Mon Sep 17 00:00:00 2001 From: doggie <3859395+fubuloubu@users.noreply.github.com> Date: Wed, 5 Jun 2024 20:03:25 -0400 Subject: [PATCH] chore: run ape tests and integration tests with different commands --- .github/workflows/test.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e4e9559..4d69c71 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -97,5 +97,8 @@ jobs: - name: Install gnosis safe run: npm install "@gnosis.pm/safe-contracts@${{ matrix.safe-version }}" - - name: Run Tests - run: ape test -s --cov -v WARNING + - name: Run Functional Tests + run: ape test tests/functional/ -s --cov -v WARNING + + - name: Run Integration Tests + run: pytest tests/integration/ -s --cov