Skip Flaky, Slow and Serial test in proper jenkins job.

This commit is contained in:
Random Liu 2016-08-02 02:13:50 +00:00
parent 08850cccca
commit 654d3a07cb
4 changed files with 5 additions and 4 deletions

View File

@ -31,7 +31,7 @@ const (
)
var _ = Describe("Image Container Conformance Test", func() {
Describe("[FLAKY] image conformance blackbox test", func() {
Describe("[Flaky] image conformance blackbox test", func() {
Context("when testing images that exist", func() {
var conformImages []ConformanceImage
BeforeEach(func() {

View File

@ -3,6 +3,6 @@ GCE_IMAGE_CONFIG_PATH=test/e2e_node/jenkins/image-config.yaml
GCE_ZONE=us-central1-f
GCE_PROJECT=kubernetes-jenkins
CLEANUP=true
GINKGO_FLAGS=--skip=FLAKY
GINKGO_FLAGS='--skip="\[Flaky\]|\[Serial\]"'
SETUP_NODE=false
TEST_ARGS=--cgroups-per-qos=true

View File

@ -13,5 +13,6 @@ GCE_PROJECT=kubernetes-jenkins
# gci-docker-version specifies docker version in GCI image.
GCE_INSTANCE_METADATA="user-data<${GCI_CLOUD_INIT},gci-docker-version=${DOCKER_VERSION}"
CLEANUP=true
GINKGO_FLAGS=--skip=FLAKY
# TODO(random-liu): Run performance test in docker validation test.
GINKGO_FLAGS='--skip="\[Flaky\]|\[Serial\]"'
SETUP_NODE=true

View File

@ -3,6 +3,6 @@ GCE_IMAGE_CONFIG_PATH=test/e2e_node/jenkins/image-config.yaml
GCE_ZONE=us-central1-f
GCE_PROJECT=kubernetes-jenkins-pull
CLEANUP=true
GINKGO_FLAGS=--skip=FLAKY
GINKGO_FLAGS='--skip="\[Flaky\]|\[Slow\]|\[Serial\]"'
SETUP_NODE=false
TEST_ARGS=--cgroups-per-qos=true