diff --git a/misc/test/performance_test.go b/misc/test/performance_test.go index 2529be9b4..5a959e6e3 100644 --- a/misc/test/performance_test.go +++ b/misc/test/performance_test.go @@ -230,6 +230,7 @@ func programTestAsBenchmark( SkipUpdate: true, AllowEmptyPreviewChanges: true, AllowEmptyUpdateChanges: true, + NoParallel: true, }) prewarmOptions.ExtraRuntimeValidation = nil integration.ProgramTest(t, &prewarmOptions) @@ -237,7 +238,9 @@ func programTestAsBenchmark( // Run with --tracing to record measured data. t.Run("benchmark", func(t *testing.T) { - finalOptions := test.With(bench.ProgramTestOptions()) + finalOptions := test.With(bench.ProgramTestOptions()).With(integration.ProgramTestOptions{ + NoParallel: true, + }) integration.ProgramTest(t, &finalOptions) }) }