mirror of
https://github.com/kubernetes/sample-controller.git
synced 2026-05-19 00:00:14 +08:00
e2e log: fix full stacktrace with Ginkgo 1.10.0
Ginkgo 1.10.0 includes the relevant fix for dumping the full stack (https://github.com/onsi/ginkgo/pull/590), so when using that release we can simplify the logging unit test. By changing the skipping, we can avoid the rather volatile util.go entries. However, that gomega is part of the stack trace still needs to be fixed in Gingko. Kubernetes-commit: 02ce619078b1a75e9fa258e101f81af899719e8e
This commit is contained in:
committed by
Kubernetes Publisher
parent
9f91627dc6
commit
63288e8e88
@@ -5,10 +5,10 @@ module k8s.io/sample-controller
|
||||
go 1.12
|
||||
|
||||
require (
|
||||
k8s.io/api v0.0.0-20191003035645-10e821c09743
|
||||
k8s.io/apimachinery v0.0.0-20191003035458-c930edf45883
|
||||
k8s.io/client-go v0.0.0-20191003035859-a746c2f219b7
|
||||
k8s.io/code-generator v0.0.0-20191003035328-700b1226c0bd
|
||||
k8s.io/api v0.0.0
|
||||
k8s.io/apimachinery v0.0.0
|
||||
k8s.io/client-go v0.0.0
|
||||
k8s.io/code-generator v0.0.0
|
||||
k8s.io/klog v1.0.0
|
||||
)
|
||||
|
||||
@@ -20,8 +20,9 @@ replace (
|
||||
golang.org/x/sys => golang.org/x/sys v0.0.0-20190209173611-3b5209105503
|
||||
golang.org/x/text => golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db
|
||||
golang.org/x/time => golang.org/x/time v0.0.0-20161028155119-f51c12702a4d
|
||||
k8s.io/api => k8s.io/api v0.0.0-20191003035645-10e821c09743
|
||||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191003035458-c930edf45883
|
||||
k8s.io/client-go => k8s.io/client-go v0.0.0-20191003035859-a746c2f219b7
|
||||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20191003035328-700b1226c0bd
|
||||
k8s.io/api => ../api
|
||||
k8s.io/apimachinery => ../apimachinery
|
||||
k8s.io/client-go => ../client-go
|
||||
k8s.io/code-generator => ../code-generator
|
||||
k8s.io/sample-controller => ../sample-controller
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user