Browse Source

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.
pull/7633/head
M. J. Fromberger 2 years ago
committed by GitHub
parent
commit
1af4113033
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/tests.yml

+ 2
- 2
.github/workflows/tests.yml View File

@ -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:


Loading…
Cancel
Save