Skip to content

Commit

Permalink
Merge pull request kubernetes#6274 from wojtek-t/dont_run_density
Browse files Browse the repository at this point in the history
Don't run Density test in e2e runs until kubernetes#6059 is fixed
  • Loading branch information
fgrzadkowski committed Apr 1, 2015
2 parents 8168344 + c5597ef commit 151b2ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/density.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ var _ = Describe("Density", func() {

for _, count := range []int{30, 50, 100} {
name := fmt.Sprintf("should allow starting %d pods per node", count)
if count > 30 {
// TODO(wojtek-t): Don't skip 30 pods per node test once #6059 if fixed.
if count > 0 {
name = "[Skipped] " + name
}
It(name, func() {
Expand Down

0 comments on commit 151b2ef

Please sign in to comment.