From 6607919594f51a54cb24a829882b825003846c6f Mon Sep 17 00:00:00 2001 From: Zachary Proser Date: Wed, 23 Jun 2021 17:43:52 -0400 Subject: [PATCH] Don't run validate tests in parallel --- modules/test-structure/test_structure.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/test-structure/test_structure.go b/modules/test-structure/test_structure.go index 05ea110aa..763c6987d 100644 --- a/modules/test-structure/test_structure.go +++ b/modules/test-structure/test_structure.go @@ -116,8 +116,6 @@ func ValidateAllTerraformModules(t *go_test.T, opts *ValidationOptions) { for _, dir := range dirsToValidate { dir := dir t.Run(strings.TrimLeft(dir, "/"), func(t *go_test.T) { - t.Parallel() - // Determine the absolute path to the git repository root cwd, cwdErr := os.Getwd() require.NoError(t, cwdErr)