Change the tag for performance tests.

This commit is contained in:
gmarek
2016-01-21 20:06:45 +01:00
parent 174521ee1a
commit 5ed9b3fab7
4 changed files with 10 additions and 271 deletions

View File

@@ -108,7 +108,7 @@ func density30AddonResourceVerifier() map[string]resourceConstraint {
// So by default it is added to the ginkgo.skip list (see driver.go).
// To run this suite you must explicitly ask for it by setting the
// -t/--test flag or ginkgo.focus flag.
var _ = Describe("Density [Skipped]", func() {
var _ = Describe("Density", func() {
var c *client.Client
var nodeCount int
var RCName string
@@ -190,8 +190,10 @@ var _ = Describe("Density [Skipped]", func() {
for _, testArg := range densityTests {
name := fmt.Sprintf("should allow starting %d pods per node", testArg.podsPerNode)
if testArg.podsPerNode == 30 {
name = "[Performance] " + name
name = "[Feature:Performance] " + name
framework.addonResourceConstraints = density30AddonResourceVerifier()
} else {
name = "[Feature:ManualPerformance] " + name
}
itArg := testArg
It(name, func() {