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
e60df085
Commit
e60df085
authored
Jul 15, 2016
by
k8s-merge-robot
Committed by
GitHub
Jul 15, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #29038 from mml/e2e-federation-env
Automatic merge from submit-queue Only run federation tests if FEDERATION==true.
parents
5e1b75d1
c342d8fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
e2e.go
hack/e2e.go
+3
-4
No files found.
hack/e2e.go
View file @
e60df085
...
@@ -193,14 +193,13 @@ func Test() bool {
...
@@ -193,14 +193,13 @@ func Test() bool {
ValidateClusterSize
()
ValidateClusterSize
()
}
}
if
os
.
Getenv
(
"FEDERATION"
)
==
""
{
if
os
.
Getenv
(
"FEDERATION"
)
==
"true"
{
return
finishRunning
(
"Ginkgo tests"
,
exec
.
Command
(
filepath
.
Join
(
*
root
,
"hack/ginkgo-e2e.sh"
),
strings
.
Fields
(
*
testArgs
)
...
))
}
else
{
if
*
testArgs
==
""
{
if
*
testArgs
==
""
{
*
testArgs
=
"--ginkgo.focus=
\\
[Feature:Federation
\\
]"
*
testArgs
=
"--ginkgo.focus=
\\
[Feature:Federation
\\
]"
}
}
return
finishRunning
(
"Federated Ginkgo tests"
,
exec
.
Command
(
filepath
.
Join
(
*
root
,
"hack/federated-ginkgo-e2e.sh"
),
strings
.
Fields
(
*
testArgs
)
...
))
return
finishRunning
(
"Federated Ginkgo tests"
,
exec
.
Command
(
filepath
.
Join
(
*
root
,
"hack/federated-ginkgo-e2e.sh"
),
strings
.
Fields
(
*
testArgs
)
...
))
}
else
{
return
finishRunning
(
"Ginkgo tests"
,
exec
.
Command
(
filepath
.
Join
(
*
root
,
"hack/ginkgo-e2e.sh"
),
strings
.
Fields
(
*
testArgs
)
...
))
}
}
}
}
...
...
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