Merge pull request #9858 from fgrzadkowski/skip_density

Skip density test in a regular e2e run
pull/6/head
Filip Grzadkowski 2015-06-16 15:35:54 +02:00
commit 6674913f92
1 changed files with 5 additions and 3 deletions

View File

@ -106,9 +106,11 @@ var _ = Describe("Density", func() {
}
densityTests := []Density{
// This test should always run, even if larger densities are skipped.
{podsPerMinion: 3, skip: false, interval: 10 * time.Second},
{podsPerMinion: 30, skip: false, interval: 10 * time.Second},
// This test should not be run in a regular jenkins run, because it is not isolated enough
// (metrics from other tests affects this one).
// TODO: Reenable once we can measure latency only from a single test.
{podsPerMinion: 3, skip: true, interval: 10 * time.Second},
{podsPerMinion: 30, skip: true, interval: 10 * time.Second},
// More than 30 pods per node is outside our v1.0 goals.
// We might want to enable those tests in the future.
{podsPerMinion: 50, skip: true, interval: 10 * time.Second},