From 67d4313e4d6a9e9fc53e7cbf4fa2d9685f7a3580 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Fri, 9 Feb 2024 15:20:30 +0530 Subject: [PATCH 1/2] chore: disables cluster test --- .github/workflows/test-and-deploy.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index e94bc5fd9a..d8f4f8bde9 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -37,16 +37,16 @@ jobs: - name: Run the tests run: make test-with-coverage - - name: Run Cluster Tests - if: (!github.event.pull_request.head.repo.fork) - env: - TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }} - TWILIO_API_KEY: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY}} - TWILIO_API_SECRET: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY_SECRET }} - TWILIO_FROM_NUMBER: ${{ secrets.TWILIO_FROM_NUMBER }} - TWILIO_TO_NUMBER: ${{ secrets.TWILIO_TO_NUMBER }} - TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }} - run: make cluster-test +# - name: Run Cluster Tests +# if: (!github.event.pull_request.head.repo.fork) +# env: +# TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }} +# TWILIO_API_KEY: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY}} +# TWILIO_API_SECRET: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY_SECRET }} +# TWILIO_FROM_NUMBER: ${{ secrets.TWILIO_FROM_NUMBER }} +# TWILIO_TO_NUMBER: ${{ secrets.TWILIO_TO_NUMBER }} +# TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }} +# run: make cluster-test - name: Verify docs generation run: make docs From e7ca3085bb2259a1835a45229c69bfb310a20a4e Mon Sep 17 00:00:00 2001 From: Shubham Date: Fri, 9 Feb 2024 15:25:03 +0530 Subject: [PATCH 2/2] chore: added make prettier to workflow --- .github/workflows/test-and-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index d8f4f8bde9..c9d4c023f7 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -33,6 +33,7 @@ jobs: run: | pip install virtualenv --upgrade make install test-install + make prettier - name: Run the tests run: make test-with-coverage