Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
4e3bce8c
Commit
4e3bce8c
authored
Jun 03, 2016
by
Vishnu kannan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark runtime conformance tests as flaky and not run them in jenkins CI.
Signed-off-by:
Vishnu kannan
<
vishnuk@google.com
>
parent
69e45dc3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
image_conformance_test.go
test/e2e_node/image_conformance_test.go
+6
-6
jenkins-ci.properties
test/e2e_node/jenkins/jenkins-ci.properties
+1
-1
jenkins-pull.properties
test/e2e_node/jenkins/jenkins-pull.properties
+2
-1
runtime_conformance_test.go
test/e2e_node/runtime_conformance_test.go
+1
-1
No files found.
test/e2e_node/image_conformance_test.go
View file @
4e3bce8c
...
...
@@ -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
())
...
...
test/e2e_node/jenkins/jenkins-ci.properties
View file @
4e3bce8c
...
...
@@ -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
test/e2e_node/jenkins/jenkins-pull.properties
View file @
4e3bce8c
...
...
@@ -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
\ No newline at end of file
test/e2e_node/runtime_conformance_test.go
View file @
4e3bce8c
...
...
@@ -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
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment