From 2ba2c23bbc87f10ee3c75c0cb4e1d656676f29f4 Mon Sep 17 00:00:00 2001 From: Makram Kamaleddine Date: Wed, 21 Aug 2024 13:52:17 +0300 Subject: [PATCH] address comments --- .github/workflows/ccip-integration-test.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ccip-integration-test.yml b/.github/workflows/ccip-integration-test.yml index 89036d252..3174d66eb 100644 --- a/.github/workflows/ccip-integration-test.yml +++ b/.github/workflows/ccip-integration-test.yml @@ -65,23 +65,10 @@ jobs: ./ccip.test local db preparetest env: CL_DATABASE_URL: ${{ env.DB_URL }} - - name: Run ccip v2 integration deployment test + - name: Run ccip integration test run: | cd $GITHUB_WORKSPACE/ccip/integration-tests - go test -v ./deployment/... - EXITCODE=${PIPESTATUS[0]} - if [ $EXITCODE -ne 0 ]; then - echo "Deployment test failed" - else - echo "Deployment test passed!" - fi - exit $EXITCODE - env: - CL_DATABASE_URL: ${{ env.DB_URL }} - - name: Run ccip ocr3 integration test - run: | - cd $GITHUB_WORKSPACE/ccip - go test -v -timeout 3m -run "^TestIntegration_OCR3Nodes$" ./core/capabilities/ccip/ccip_integration_tests + go test -v -run '^Test0001_InitialDeploy\$' -timeout 5m ./deployment/ccip EXITCODE=${PIPESTATUS[0]} if [ $EXITCODE -ne 0 ]; then echo "Integration test failed"