Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
makramkd committed Aug 21, 2024
1 parent ff57ec9 commit 2ba2c23
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/ccip-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2ba2c23

Please sign in to comment.