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
4aa412e0
Commit
4aa412e0
authored
Sep 12, 2015
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13810 from quinton-hoole/2015-09-10-banish-flaky-tests
Auto commit by PR queue bot
parents
916472f6
72cfaf49
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
e2e.sh
hack/jenkins/e2e.sh
+1
-0
namespace.go
test/e2e/namespace.go
+6
-5
No files found.
hack/jenkins/e2e.sh
View file @
4aa412e0
...
@@ -149,6 +149,7 @@ GCE_PARALLEL_SKIP_TESTS=(
...
@@ -149,6 +149,7 @@ GCE_PARALLEL_SKIP_TESTS=(
GCE_PARALLEL_FLAKY_TESTS
=(
GCE_PARALLEL_FLAKY_TESTS
=(
"DaemonRestart"
"DaemonRestart"
"Elasticsearch"
"Elasticsearch"
"Namespaces.*should
\s
delete
\s
fast"
"PD"
"PD"
"ServiceAccounts"
"ServiceAccounts"
"Services.*change
\s
the
\s
type"
"Services.*change
\s
the
\s
type"
...
...
test/e2e/namespace.go
View file @
4aa412e0
...
@@ -19,13 +19,14 @@ package e2e
...
@@ -19,13 +19,14 @@ package e2e
import
(
import
(
"fmt"
"fmt"
//"k8s.io/kubernetes/pkg/api"
//"k8s.io/kubernetes/pkg/api"
"strings"
"sync"
"time"
client
"k8s.io/kubernetes/pkg/client/unversioned"
client
"k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/util/wait"
"k8s.io/kubernetes/pkg/util/wait"
"strings"
"sync"
"time"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
...
@@ -110,10 +111,10 @@ var _ = Describe("Namespaces", func() {
...
@@ -110,10 +111,10 @@ var _ = Describe("Namespaces", func() {
//Confirms that namespace draining is functioning reasonably
//Confirms that namespace draining is functioning reasonably
//at minute intervals.
//at minute intervals.
It
(
"
Delete 90 percent of 100 namespace in 150 seconds
"
,
It
(
"
should delete fast enough (90 percent of 100 namespaces in 150 seconds)
"
,
func
()
{
extinguish
(
c
,
100
,
10
,
150
)
})
func
()
{
extinguish
(
c
,
100
,
10
,
150
)
})
//comprehensive draining ; uncomment after #7372
//comprehensive draining ; uncomment after #7372
PIt
(
"
Delete ALL of 100 namespace in 150 seconds
"
,
PIt
(
"
should always delete fast (ALL of 100 namespaces in 150 seconds)
"
,
func
()
{
extinguish
(
c
,
100
,
0
,
150
)
})
func
()
{
extinguish
(
c
,
100
,
0
,
150
)
})
})
})
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