Mark runtime conformance tests as flaky and not run them in jenkins CI.

Signed-off-by: Vishnu kannan <vishnuk@google.com>
This commit is contained in:
Vishnu kannan 2016-06-03 13:57:44 -07:00
parent 69e45dc30d
commit 4e3bce8cb7
4 changed files with 9 additions and 9 deletions

View File

@ -41,7 +41,7 @@ var _ = Describe("Image Container Conformance Test", func() {
cl = client.NewOrDie(&restclient.Config{Host: *apiServerAddress})
})
Describe("image conformance blackbox test", func() {
Describe("[FLAKY] image conformance blackbox test", func() {
Context("when testing images that exist", func() {
var conformImages []ConformanceImage
BeforeEach(func() {
@ -59,7 +59,7 @@ var _ = Describe("Image Container Conformance Test", func() {
}
})
It("It should present successfully [Conformance]", func() {
It("It should present successfully", func() {
for _, conformImage := range conformImages {
present, err := conformImage.Present()
Expect(err).ShouldNot(HaveOccurred())
@ -67,7 +67,7 @@ var _ = Describe("Image Container Conformance Test", func() {
}
})
It("should list pulled images [Conformance]", func() {
It("should list pulled images", func() {
image, _ := NewConformanceImage("docker", "")
tags, err := image.List()
Expect(err).ShouldNot(HaveOccurred())
@ -101,7 +101,7 @@ var _ = Describe("Image Container Conformance Test", func() {
conformImages = append(conformImages, conformImage)
}
By("not presenting images [Conformance]", func() {
By("not presenting images", func() {
for _, conformImage := range conformImages {
present, err := conformImage.Present()
Expect(err).ShouldNot(HaveOccurred())
@ -109,7 +109,7 @@ var _ = Describe("Image Container Conformance Test", func() {
}
})
By("not listing pulled images [Conformance]", func() {
By("not listing pulled images", func() {
image, _ := NewConformanceImage("docker", "")
tags, err := image.List()
Expect(err).ShouldNot(HaveOccurred())
@ -118,7 +118,7 @@ var _ = Describe("Image Container Conformance Test", func() {
}
})
By("not removing non-exist images [Conformance]", func() {
By("not removing non-exist images", func() {
for _, conformImage := range conformImages {
err := conformImage.Remove()
Expect(err).Should(HaveOccurred())

View File

@ -9,6 +9,6 @@ GCE_PROJECT=kubernetes-jenkins
GCE_IMAGE_PROJECT=kubernetes-jenkins
INSTALL_GODEP=true
CLEANUP=true
GINKGO_FLAGS=
GINKGO_FLAGS=--ginkgo.skip=FLAKY
SETUP_NODE=false

View File

@ -9,5 +9,5 @@ GCE_PROJECT=kubernetes-jenkins-pull
GCE_IMAGE_PROJECT=kubernetes-jenkins-pull
INSTALL_GODEP=true
CLEANUP=true
GINKGO_FLAGS=
GINKGO_FLAGS=--ginkgo.skip=FLAKY
SETUP_NODE=false

View File

@ -47,7 +47,7 @@ type testStatus struct {
Ready bool
}
var _ = Describe("Container runtime Conformance Test", func() {
var _ = Describe("[FLAKY] Container runtime Conformance Test", func() {
var cl *client.Client
BeforeEach(func() {