Skip to content

Commit

Permalink
Merge #97235 #97237
Browse files Browse the repository at this point in the history
97235: ccl/kvccl/kvtenantccl: skip TestTenantUpgrade r=herkolategan a=pavelkalinnikov

Refs: #97076

Reason: flaky test

Generated by bin/skip-test.

Release justification: non-production code changes
Release note: None
Epic: None

97237: kv/kvserver: skip TestLearnerOrJointConfigAdminRelocateRange r=herkolategan a=pavelkalinnikov

Refs: #95500

Reason: flaky test

Generated by bin/skip-test.

Release justification: non-production code changes
Release note: None
Epic: None

Co-authored-by: Pavel Kalinnikov <[email protected]>
  • Loading branch information
craig[bot] and pav-kv committed Feb 16, 2023
3 parents f19e51b + 8aede8e + ae79b7c commit 2111f9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/ccl/kvccl/kvtenantccl/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ go_test(
"//pkg/sql/sqlliveness/slinstance",
"//pkg/testutils",
"//pkg/testutils/serverutils",
"//pkg/testutils/skip",
"//pkg/testutils/sqlutils",
"//pkg/testutils/testcluster",
"//pkg/upgrade",
Expand Down
2 changes: 2 additions & 0 deletions pkg/ccl/kvccl/kvtenantccl/tenant_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/server"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/sql/sqlliveness/slinstance"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils"
"github.com/cockroachdb/cockroach/pkg/testutils/testcluster"
"github.com/cockroachdb/cockroach/pkg/upgrade"
Expand All @@ -47,6 +48,7 @@ import (
// also verifies that the version is correct after a restart
func TestTenantUpgrade(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 97076, "flaky test")
defer log.Scope(t).Close(t)
ctx := context.Background()
settings := cluster.MakeTestingClusterSettingsWithVersions(
Expand Down
1 change: 1 addition & 0 deletions pkg/kv/kvserver/replica_learner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1465,6 +1465,7 @@ func TestLearnerAndVoterOutgoingFollowerRead(t *testing.T) {

func TestLearnerOrJointConfigAdminRelocateRange(t *testing.T) {
defer leaktest.AfterTest(t)()
skip.WithIssue(t, 95500, "flaky test")
defer log.Scope(t).Close(t)

ctx := context.Background()
Expand Down

0 comments on commit 2111f9b

Please sign in to comment.