From 67613e5a94db07a189162a44b6f438941c99768d Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 9 Jan 2025 20:10:26 -0500 Subject: [PATCH] Re-enable parallel testing of consistency datastore tests --- .../integrationtesting/consistency_datastore_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/services/integrationtesting/consistency_datastore_test.go b/internal/services/integrationtesting/consistency_datastore_test.go index 4f49b7e608..d941390a3a 100644 --- a/internal/services/integrationtesting/consistency_datastore_test.go +++ b/internal/services/integrationtesting/consistency_datastore_test.go @@ -44,6 +44,11 @@ func TestConsistencyPerDatastore(t *testing.T) { filePath := filePath t.Run(path.Base(filePath), func(t *testing.T) { + // FIXME errors arise if spanner is run in parallel + if engineID != "spanner" { + t.Parallel() + } + rde := testdatastore.RunDatastoreEngine(t, engineID) ds := rde.NewDatastore(t, config.DatastoreConfigInitFunc(t, dsconfig.WithWatchBufferLength(0),