From 7eb97a2ecd2c8a435c53576de26a94ee943e0678 Mon Sep 17 00:00:00 2001 From: Matheus Degiovani Date: Tue, 13 Aug 2024 15:46:04 -0300 Subject: [PATCH] CI: Reduce number of test runs of rpc This reduces the number of sequential tests of the RPC subsystem from 500 to 50. This speeds up the run of the CI and reduces flakiness. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ea9052a8..09999713 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -32,4 +32,4 @@ jobs: run: | cd rpc go test -c - for i in `seq 500`; do ./rpc.test; done + for i in `seq 50`; do ./rpc.test; done