From e046da98c7d3ce7053a176fa46f04619da83fa83 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 30 Mar 2025 08:48:24 -0400 Subject: [PATCH] Parallelize tests --- .github/workflows/test-and-deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 045e97f..2319beb 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -37,7 +37,6 @@ jobs: pytest test_offline.py deploy-test-instance: - needs: run-offline-tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -91,7 +90,9 @@ jobs: pytest test_online.py deploy-prod-instance: - needs: run-online-tests + needs: + - run-offline-tests + - run-online-tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 -- 2.39.5