Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
34652: partitionccl: skip TestInitialPartitioning on testshort r=andreimatei a=andreimatei

It's taking half a core for 117s on my laptop.

Release note: None

Co-authored-by: Andrei Matei <[email protected]>
  • Loading branch information
craig[bot] and andreimatei committed Feb 6, 2019
2 parents d104dce + da86fb6 commit 1092e02
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/ccl/partitionccl/partition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,10 @@ func TestInitialPartitioning(t *testing.T) {
// This test configures many sub-tests and is too slow to run under nightly
// race stress.
if testutils.NightlyStress() && util.RaceEnabled {
t.Skip()
t.Skip("too big for nightly stress race")
}
if testing.Short() {
t.Skip("short")
}

rng, _ := randutil.NewPseudoRand()
Expand Down

0 comments on commit 1092e02

Please sign in to comment.