From d93457fc20b773a34ced3e27055ffdac4f048d40 Mon Sep 17 00:00:00 2001 From: Julien Poissonnier Date: Wed, 28 Aug 2024 18:13:47 +0200 Subject: [PATCH] fix tests --- tests/containers_test.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/containers_test.go b/tests/containers_test.go index c744640c..074e4063 100644 --- a/tests/containers_test.go +++ b/tests/containers_test.go @@ -140,14 +140,12 @@ func TestKitchenSinkLanguageVersions(t *testing.T) { for _, dir := range dirs { dir := dir t.Run(dir.Name(), func(t *testing.T) { - if !strings.HasPrefix(dir.Name(), "node-") { - // We can't run the node tests in parallel because setting the node version is a - // global for the container - t.Parallel() - } p := filepath.Join("testdata", dir.Name()) copyTestData(t, p) integration.ProgramTest(t, &integration.ProgramTestOptions{ + // We can't run the node tests in parallel because setting the node version is a + // global for the container. + NoParallel: strings.HasPrefix(dir.Name(), "node-"), Dir: p, Quick: true, SkipRefresh: true,