Skip to content

Commit

Permalink
Re-enable parallel testing of consistency datastore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josephschorr committed Jan 10, 2025
1 parent 971cfd8 commit 67613e5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 67613e5

Please sign in to comment.