Skip to content

Commit

Permalink
test(bigtable): Skipping long running tests in short mode (#10029)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhshkh committed May 7, 2024
1 parent 949242c commit 2695801
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bigtable/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,10 @@ func TestIntegration_LargeReadsWritesAndScans(t *testing.T) {
}
defer cleanup()

if !testEnv.Config().UseProd {
t.Skip("Skip long running tests in short mode")
}

ts := uid.NewSpace("ts", &uid.Options{Short: true}).New()
if err := adminClient.CreateColumnFamily(ctx, tableName, ts); err != nil {
t.Fatalf("Creating column family: %v", err)
Expand Down

0 comments on commit 2695801

Please sign in to comment.