Skip to content

Commit

Permalink
roachtest: make pg_regress weekly and its failures non-blocking
Browse files Browse the repository at this point in the history
This should reduce the amount of toil for us until we iron out most of
the differences with postgres.

Epic: None

Release note: None
  • Loading branch information
yuzefovich committed Mar 4, 2024
1 parent a2420ac commit 5953d33
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions pkg/cmd/roachtest/tests/pg_regress.go
Original file line number Diff line number Diff line change
Expand Up @@ -460,14 +460,18 @@ func runPGRegress(ctx context.Context, t test.Test, c cluster.Cluster) {

func registerPGRegress(r registry.Registry) {
r.Add(registry.TestSpec{
Name: "pg_regress",
Owner: registry.OwnerSQLQueries,
Benchmark: false,
Cluster: r.MakeClusterSpec(1 /* nodeCount */),
RequiresLicense: true,
CompatibleClouds: registry.AllExceptAWS,
Suites: registry.Suites(registry.Nightly),
Leases: registry.MetamorphicLeases,
Name: "pg_regress",
Owner: registry.OwnerSQLQueries,
Benchmark: false,
Cluster: r.MakeClusterSpec(1 /* nodeCount */),
// At the moment, we have a very large deviation from postgres, also
// some diffs include line numbers, so we don't treat failures as
// blockers for now.
NonReleaseBlocker: true,
RequiresLicense: true,
CompatibleClouds: registry.AllExceptAWS,
Suites: registry.Suites(registry.Weekly),
Leases: registry.MetamorphicLeases,
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
runPGRegress(ctx, t, c)
},
Expand Down

0 comments on commit 5953d33

Please sign in to comment.