Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions internal/datastore/spanner/spanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ func TestSpannerDatastore(t *testing.T) {
ctx := context.Background()
b := testdatastore.RunSpannerForTesting(t, "", "head")

// TODO(jschorr): Once https://github.com/GoogleCloudPlatform/cloud-spanner-emulator/issues/74 has been resolved,
// change back to `All` to re-enable watch and GC tests.
// GC tests are disabled because they depend also on the ability to configure change streams with custom retention.
test.AllWithExceptions(t, test.DatastoreTesterFunc(func(revisionQuantization, _, _ time.Duration, watchBufferLength uint16) (datastore.Datastore, error) {
ds := b.NewDatastore(t, func(engine, uri string) datastore.Datastore {
ds, err := NewSpannerDatastore(ctx, uri,
Expand All @@ -43,7 +40,7 @@ func TestSpannerDatastore(t *testing.T) {
return ds
})
return ds, nil
}), test.WithCategories(test.GCCategory, test.WatchCategory, test.StatsCategory, test.TransactionCategory), false)
}), test.WithCategories(test.GCCategory, test.StatsCategory), false)

t.Run("TestFakeStats", createDatastoreTest(
b,
Expand Down
Loading