From 1af41130334f00324746ceb2f4ce96c8a6643258 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Wed, 19 Jan 2022 08:24:12 -0800 Subject: [PATCH] Increase test splits from 4 to 6. (#7630) Decrease the likelihood that two flaky tests will hit the same batch. Account for the increase in test load from #7608. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4f0c7cf1d..f3f5cba1d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - part: ["00", "01", "02", "03"] + part: ["00", "01", "02", "03", "04", "05"] steps: - uses: actions/setup-go@v2 with: @@ -30,7 +30,7 @@ jobs: Makefile - name: Run Go Tests run: | - make test-group-${{ matrix.part }} NUM_SPLIT=4 + make test-group-${{ matrix.part }} NUM_SPLIT=6 if: env.GIT_DIFF - uses: actions/upload-artifact@v2 with: