Skip to content

Commit d91ef00

Browse files
authored
.github/workflows: split batching test (#764)
ccip_batching_test.go contains multiple tests and when one of them fails its hard to know which one due to the large amount of logs.
1 parent f156d12 commit d91ef00

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ccip-integration-test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,16 @@ jobs:
2727
name: "OOO Execution Test"
2828
- cmd: cd integration-tests/smoke/ccip && go test ccip_messaging_test.go -timeout 12m -test.parallel=2 -count=1 -json
2929
name: "Messaging Test"
30-
- cmd: cd integration-tests/smoke/ccip && go test ccip_batching_test.go -timeout 12m -test.parallel=2 -count=1 -json
31-
name: "Batching Test"
30+
- cmd: cd integration-tests/smoke/ccip && go test -run "Test_CCIPBatching_MaxBatchSizeEVM" ccip_batching_test.go -timeout 12m -test.parallel=1 -count=1 -json
31+
name: "Batching Test Test_CCIPBatching_MaxBatchSizeEVM"
32+
- cmd: cd integration-tests/smoke/ccip && go test -run "^Test_CCIPBatching_MultiSource$" ccip_batching_test.go -timeout 12m -test.parallel=1 -count=1 -json
33+
name: "Batching Test Test_CCIPBatching_MultiSource"
34+
- cmd: cd integration-tests/smoke/ccip && go test -run "Test_CCIPBatching_MultiSource_MultiReports" ccip_batching_test.go -timeout 12m -test.parallel=1 -count=1 -json
35+
name: "Batching Test Test_CCIPBatching_MultiSource_MultiReports"
36+
- cmd: cd integration-tests/smoke/ccip && go test -run "^Test_CCIPBatching_SingleSource$" ccip_batching_test.go -timeout 12m -test.parallel=1 -count=1 -json
37+
name: "Batching Test Test_CCIPBatching_SingleSource"
38+
- cmd: cd integration-tests/smoke/ccip && go test -run "Test_CCIPBatching_SingleSource_MultipleReports" ccip_batching_test.go -timeout 12m -test.parallel=1 -count=1 -json
39+
name: "Batching Test Test_CCIPBatching_SingleSource_MultipleReports"
3240
- cmd: cd integration-tests/smoke/ccip && go test ccip_gas_price_updates_test.go -timeout 12m -test.parallel=2 -count=1 -json
3341
name: "Gas Price Updates Test"
3442
# TODO: this can only run in docker for now, switch to in-memory and uncomment

0 commit comments

Comments
 (0)