From 10770667ec8f7f3d161678feef255fb1bfa46a6f Mon Sep 17 00:00:00 2001 From: Vaibhav Kamra Date: Thu, 15 Dec 2022 15:44:36 -0800 Subject: [PATCH] Serialize test runs (#1826) ## Description Disable parallel tests to eliminate cases where we get throttled due to multiple test packages running. Going forward - we could possibly separate out integration from unit tests and have the unit tests run in parallel. ## Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [x] :robot: Test - [ ] :computer: CI/Deployment - [ ] :hamster: Trivial/Minor --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e55b913e8..7f3a36319 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,6 +175,7 @@ jobs: -json \ -v \ -failfast \ + -p 1 \ ./... 2>&1 | tee ./testlog/gotest.log | gotestfmt -hide successful-tests # Upload the original go test log as an artifact for later review.