Skip to content

Commit

Permalink
pkg/jobs: skip flaky TestJobSchedulerDaemonProcessesJobs
Browse files Browse the repository at this point in the history
See cockroachdb#52959.

Release note: None
  • Loading branch information
jbowens committed Aug 19, 2020
1 parent a4286e9 commit 9c8d12f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/jobs/job_scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/sql/sqlutil"
"github.com/cockroachdb/cockroach/pkg/testutils"
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
"github.com/cockroachdb/cockroach/pkg/testutils/skip"
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/log"
Expand All @@ -41,6 +42,9 @@ import (
func TestJobSchedulerReschedulesRunning(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.WithIssue(t, 52959)

h, cleanup := newTestHelper(t)
defer cleanup()

Expand Down

0 comments on commit 9c8d12f

Please sign in to comment.