Skip to content

Commit

Permalink
Merge pull request #386 from liornoy/ginkgov2
Browse files Browse the repository at this point in the history
Update Ginkgo to v2
SchSeba authored Jan 9, 2023

Verified

This commit was signed with the committer’s verified signature.
vdwees jesse
2 parents 36d4923 + a1120e0 commit 216489f
Showing 558 changed files with 50,468 additions and 15,890 deletions.
3 changes: 1 addition & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -64,8 +64,7 @@ linters-settings:
for-loops: false # Report preallocation suggestions on for loops, false by default
stylecheck:
dot-import-whitelist:
- github.com/onsi/ginkgo
- github.com/onsi/ginkgo/extensions/table
- github.com/onsi/ginkgo/v2
- github.com/onsi/gomega
- github.com/onsi/gomega/gstruct

3 changes: 1 addition & 2 deletions controllers/sriovibnetwork_controller_test.go
Original file line number Diff line number Diff line change
@@ -13,8 +13,7 @@ import (
"k8s.io/client-go/util/retry"
dynclient "sigs.k8s.io/controller-runtime/pkg/client"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
3 changes: 1 addition & 2 deletions controllers/sriovnetwork_controller_test.go
Original file line number Diff line number Diff line change
@@ -13,8 +13,7 @@ import (
"k8s.io/client-go/util/retry"
dynclient "sigs.k8s.io/controller-runtime/pkg/client"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
2 changes: 1 addition & 1 deletion controllers/sriovnetworkpoolconfig_controller_test.go
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
3 changes: 1 addition & 2 deletions controllers/sriovoperatorconfig_controller_test.go
Original file line number Diff line number Diff line change
@@ -7,8 +7,7 @@ import (
appsv1 "k8s.io/api/apps/v1"
"k8s.io/apimachinery/pkg/types"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
12 changes: 4 additions & 8 deletions controllers/suite_test.go
Original file line number Diff line number Diff line change
@@ -24,8 +24,7 @@ import (
"time"

netattdefv1 "github.com/k8snetworkplumbingwg/network-attachment-definition-client/pkg/apis/k8s.cni.cncf.io/v1"
. "github.com/onsi/ginkgo"
"github.com/onsi/ginkgo/config"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
openshiftconfigv1 "github.com/openshift/api/config/v1"
mcfgv1 "github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1"
@@ -36,7 +35,6 @@ import (
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
"sigs.k8s.io/controller-runtime/pkg/envtest/printer"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

@@ -185,7 +183,7 @@ var _ = BeforeSuite(func(done Done) {
poolConfig.Spec = sriovnetworkv1.SriovNetworkPoolConfigSpec{}
Expect(k8sClient.Create(context.TODO(), poolConfig)).Should(Succeed())
close(done)
}, 60)
})

var _ = AfterSuite(func() {
By("tearing down the test environment")
@@ -196,11 +194,9 @@ var _ = AfterSuite(func() {
})

func TestAPIs(t *testing.T) {
config.GinkgoConfig.ParallelTotal = 1
_, reporterConfig := GinkgoConfiguration()

RegisterFailHandler(Fail)

RunSpecsWithDefaultAndCustomReporters(t,
"Controller Suite",
[]Reporter{printer.NewlineReporter{}})
RunSpecs(t, "Controller Suite", reporterConfig)
}
31 changes: 14 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/k8snetworkplumbingwg/sriov-network-operator

go 1.17
go 1.18

require (
github.com/Masterminds/sprig/v3 v3.2.2
@@ -9,13 +9,13 @@ require (
github.com/coreos/go-systemd/v22 v22.3.2
github.com/fsnotify/fsnotify v1.5.1
github.com/golang/glog v1.0.0
github.com/google/go-cmp v0.5.7
github.com/google/go-cmp v0.5.9
github.com/hashicorp/go-retryablehttp v0.7.0
github.com/jaypipes/ghw v0.6.1
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.1.1-0.20201119153432-9d213757d22d
github.com/k8snetworkplumbingwg/sriov-network-device-plugin v0.0.0-20220614121156-6fff085aed91
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.17.0
github.com/onsi/ginkgo/v2 v2.5.0
github.com/onsi/gomega v1.24.0
github.com/openshift/api v0.0.0-20220819133013-d8b9c3791a1a
github.com/openshift/client-go v0.0.0-20200827190008-3062137373b5
github.com/openshift/machine-config-operator v0.0.1-0.20201023110058-6c8bd9b2915c
@@ -72,7 +72,7 @@ require (
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-errors/errors v1.0.1 // indirect
github.com/go-logr/logr v1.2.2 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/zapr v1.2.0 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -108,7 +108,6 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.12.1 // indirect
@@ -128,23 +127,21 @@ require (
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.19.1 // indirect
go4.org v0.0.0-20200104003542-c7e774b10ea0 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/net v0.1.0 // indirect
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/tools v0.2.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
google.golang.org/grpc v1.40.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect
k8s.io/cli-runtime v0.24.1 // indirect
k8s.io/component-base v0.24.1 // indirect
100 changes: 26 additions & 74 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/daemon/daemon_test.go
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ import (

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/fakefilesystem"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
fakemcclientset "github.com/openshift/machine-config-operator/pkg/generated/clientset/versioned/fake"
corev1 "k8s.io/api/core/v1"
2 changes: 1 addition & 1 deletion pkg/plugins/generic/generic_plugin_test.go
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ package generic_test
import (
"testing"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
32 changes: 22 additions & 10 deletions test/conformance/test_suite_test.go
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@ import (

"github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/clean"

. "github.com/onsi/ginkgo"
"github.com/onsi/ginkgo/reporters"
. "github.com/onsi/ginkgo/v2"
"github.com/onsi/ginkgo/v2/types"
. "github.com/onsi/gomega"

testclient "github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/client"
@@ -21,8 +21,10 @@ import (
)

var (
junitPath *string
dumpOutput *bool
junitPath *string
dumpOutput *bool
reporterFile string
customReporter *k8sreporter.KubernetesReporter
)

func init() {
@@ -33,12 +35,12 @@ func init() {
func TestTest(t *testing.T) {
RegisterFailHandler(Fail)

rr := []Reporter{}
_, reporterConfig := GinkgoConfiguration()
if junitPath != nil {
rr = append(rr, reporters.NewJUnitReporter(*junitPath))
reporterConfig.JUnitReport = *junitPath
}

reporterFile := os.Getenv("REPORTER_OUTPUT")
reporterFile = os.Getenv("REPORTER_OUTPUT")

clients := testclient.New("")

@@ -49,14 +51,24 @@ func TestTest(t *testing.T) {
return
}
defer f.Close()
rr = append(rr, k8sreporter.New(clients, f))
customReporter = k8sreporter.New(clients, f)
} else if *dumpOutput {
rr = append(rr, k8sreporter.New(clients, os.Stdout))
customReporter = k8sreporter.New(clients, os.Stdout)
}

RunSpecsWithDefaultAndCustomReporters(t, "SRIOV Operator conformance tests", rr)
RunSpecs(t, "SRIOV Operator conformance tests", reporterConfig)
}

var _ = ReportAfterEach(func(sr types.SpecReport) {
if sr.Failed() == false {
return
}

if reporterFile != "" || *dumpOutput {
customReporter.Report(sr)
}
})

var _ = BeforeSuite(func() {
err := clean.All()
Expect(err).NotTo(HaveOccurred())
3 changes: 1 addition & 2 deletions test/conformance/tests/test_sriov_operator.go
Original file line number Diff line number Diff line change
@@ -10,8 +10,7 @@ import (
"strings"
"time"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gstruct"

11 changes: 5 additions & 6 deletions test/e2e/e2e_tests_suite_test.go
Original file line number Diff line number Diff line change
@@ -8,15 +8,14 @@ import (
"time"

netattdefv1 "github.com/k8snetworkplumbingwg/network-attachment-definition-client/pkg/apis/k8s.cni.cncf.io/v1"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
"k8s.io/utils/pointer"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
"sigs.k8s.io/controller-runtime/pkg/envtest/printer"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

@@ -46,12 +45,12 @@ const (
func TestSriovTests(t *testing.T) {
RegisterFailHandler(Fail)

_, reporterConfig := GinkgoConfiguration()

testNamespace = os.Getenv("NAMESPACE")
Expect(testNamespace).NotTo(Equal(""))

RunSpecsWithDefaultAndCustomReporters(t,
"E2E Suite",
[]Reporter{printer.NewlineReporter{}})
RunSpecs(t, "E2E Suite", reporterConfig)
}

var sriovIface *sriovnetworkv1.InterfaceExt
@@ -105,7 +104,7 @@ var _ = BeforeSuite(func(done Done) {
}

close(done)
}, 60)
})

var _ = AfterSuite(func() {
By("tearing down the test environment")
3 changes: 1 addition & 2 deletions test/e2e/sriovoperatornodepolicy_test.go
Original file line number Diff line number Diff line change
@@ -11,8 +11,7 @@ import (

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

. "github.com/k8snetworkplumbingwg/sriov-network-operator/test/util"
2 changes: 1 addition & 1 deletion test/util/execute/ginkgo.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package execute

import "github.com/onsi/ginkgo"
import "github.com/onsi/ginkgo/v2"

// BeforeAll gets executed before all the entries of
// the scope it's getting executed in.
38 changes: 5 additions & 33 deletions test/util/k8sreporter/reporter.go
Original file line number Diff line number Diff line change
@@ -12,8 +12,7 @@ import (
sriovv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
testclient "github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/client"
"github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/namespaces"
"github.com/onsi/ginkgo/config"
"github.com/onsi/ginkgo/types"
"github.com/onsi/ginkgo/v2/types"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtimeclient "sigs.k8s.io/controller-runtime/pkg/client"
@@ -29,30 +28,15 @@ func New(clients *testclient.ClientSet, dumpDestination io.Writer) *KubernetesRe
return &KubernetesReporter{clients: clients, dumpOutput: dumpDestination}
}

func (r *KubernetesReporter) SpecSuiteWillBegin(config config.GinkgoConfigType, summary *types.SuiteSummary) {

}

func (r *KubernetesReporter) BeforeSuiteDidRun(setupSummary *types.SetupSummary) {
r.Cleanup()
}

func (r *KubernetesReporter) SpecWillRun(specSummary *types.SpecSummary) {
}

func (r *KubernetesReporter) SpecDidComplete(specSummary *types.SpecSummary) {
func (r *KubernetesReporter) Report(sr types.SpecReport) {
r.Lock()
defer r.Unlock()

if !specSummary.HasFailureState() {
return
}
fmt.Fprintln(r.dumpOutput, "Starting dump for failed spec", specSummary.ComponentTexts)
r.Dump()
fmt.Fprintln(r.dumpOutput, "Starting dump for failed spec", sr.ContainerHierarchyTexts)
r.dump()
fmt.Fprintln(r.dumpOutput, "Finished dump for failed spec")
}

func (r *KubernetesReporter) Dump() {
func (r *KubernetesReporter) dump() {
r.logNodes()
r.logPods("openshift-sriov-network-operator")
r.logPods(namespaces.Test)
@@ -63,10 +47,6 @@ func (r *KubernetesReporter) Dump() {
r.logNetworkPolicies()
}

// Cleanup cleans up the current content of the artifactsDir
func (r *KubernetesReporter) Cleanup() {
}

func (r *KubernetesReporter) logPods(namespace string) {
fmt.Fprintf(r.dumpOutput, "Logging pods for %s", namespace)

@@ -161,11 +141,3 @@ func (r *KubernetesReporter) logSriovNodeState() {
}
fmt.Fprintln(r.dumpOutput, string(j))
}

func (r *KubernetesReporter) AfterSuiteDidRun(setupSummary *types.SetupSummary) {

}

func (r *KubernetesReporter) SpecSuiteDidEnd(summary *types.SuiteSummary) {

}
32 changes: 22 additions & 10 deletions test/validation/test_suite_test.go
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@ import (
"os"
"testing"

. "github.com/onsi/ginkgo"
"github.com/onsi/ginkgo/reporters"
. "github.com/onsi/ginkgo/v2"
"github.com/onsi/ginkgo/v2/types"
. "github.com/onsi/gomega"

testclient "github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/client"
@@ -19,8 +19,10 @@ import (
)

var (
junitPath *string
dumpOutput *bool
junitPath *string
dumpOutput *bool
reporterFile string
customReporter *k8sreporter.KubernetesReporter
)

func init() {
@@ -31,12 +33,12 @@ func init() {
func TestTest(t *testing.T) {
RegisterFailHandler(Fail)

rr := []Reporter{}
_, reporterConfig := GinkgoConfiguration()
if junitPath != nil {
rr = append(rr, reporters.NewJUnitReporter(*junitPath))
reporterConfig.JUnitReport = *junitPath
}

reporterFile := os.Getenv("REPORTER_OUTPUT")
reporterFile = os.Getenv("REPORTER_OUTPUT")

clients := testclient.New("")

@@ -47,10 +49,20 @@ func TestTest(t *testing.T) {
return
}
defer f.Close()
rr = append(rr, k8sreporter.New(clients, f))
customReporter = k8sreporter.New(clients, f)
} else if *dumpOutput {
rr = append(rr, k8sreporter.New(clients, os.Stdout))
customReporter = k8sreporter.New(clients, os.Stdout)
}

RunSpecsWithDefaultAndCustomReporters(t, "SRIOV Operator validation tests", rr)
RunSpecs(t, "SRIOV Operator validation tests", reporterConfig)
}

var _ = ReportAfterEach(func(sr types.SpecReport) {
if sr.Failed() == false {
return
}

if reporterFile != "" || *dumpOutput {
customReporter.Report(sr)
}
})
2 changes: 1 addition & 1 deletion test/validation/tests/test_validation.go
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import (
"fmt"
"os"

. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

corev1 "k8s.io/api/core/v1"
4 changes: 4 additions & 0 deletions vendor/github.com/go-logr/logr/README.md
787 changes: 787 additions & 0 deletions vendor/github.com/go-logr/logr/funcr/funcr.go

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions vendor/github.com/go-logr/logr/logr.go
66 changes: 35 additions & 31 deletions vendor/github.com/google/go-cmp/cmp/compare.go
44 changes: 24 additions & 20 deletions vendor/github.com/google/go-cmp/cmp/internal/diff/diff.go
48 changes: 0 additions & 48 deletions vendor/github.com/google/go-cmp/cmp/internal/value/zero.go

This file was deleted.

10 changes: 6 additions & 4 deletions vendor/github.com/google/go-cmp/cmp/options.go
20 changes: 11 additions & 9 deletions vendor/github.com/google/go-cmp/cmp/path.go
13 changes: 7 additions & 6 deletions vendor/github.com/google/go-cmp/cmp/report_compare.go
21 changes: 16 additions & 5 deletions vendor/github.com/google/go-cmp/cmp/report_reflect.go
25 changes: 13 additions & 12 deletions vendor/github.com/google/go-cmp/cmp/report_slices.go
1 change: 1 addition & 0 deletions vendor/github.com/google/go-cmp/cmp/report_text.go
3 changes: 0 additions & 3 deletions vendor/github.com/nxadm/tail/.gitignore

This file was deleted.

56 changes: 0 additions & 56 deletions vendor/github.com/nxadm/tail/CHANGES.md

This file was deleted.

19 changes: 0 additions & 19 deletions vendor/github.com/nxadm/tail/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions vendor/github.com/nxadm/tail/LICENSE

This file was deleted.

44 changes: 0 additions & 44 deletions vendor/github.com/nxadm/tail/README.md

This file was deleted.

7 changes: 0 additions & 7 deletions vendor/github.com/nxadm/tail/ratelimiter/Licence

This file was deleted.

97 changes: 0 additions & 97 deletions vendor/github.com/nxadm/tail/ratelimiter/leakybucket.go

This file was deleted.

60 changes: 0 additions & 60 deletions vendor/github.com/nxadm/tail/ratelimiter/memory.go

This file was deleted.

6 changes: 0 additions & 6 deletions vendor/github.com/nxadm/tail/ratelimiter/storage.go

This file was deleted.

455 changes: 0 additions & 455 deletions vendor/github.com/nxadm/tail/tail.go

This file was deleted.

17 changes: 0 additions & 17 deletions vendor/github.com/nxadm/tail/tail_posix.go

This file was deleted.

19 changes: 0 additions & 19 deletions vendor/github.com/nxadm/tail/tail_windows.go

This file was deleted.

49 changes: 0 additions & 49 deletions vendor/github.com/nxadm/tail/util/util.go

This file was deleted.

37 changes: 0 additions & 37 deletions vendor/github.com/nxadm/tail/watch/filechanges.go

This file was deleted.

136 changes: 0 additions & 136 deletions vendor/github.com/nxadm/tail/watch/inotify.go

This file was deleted.

249 changes: 0 additions & 249 deletions vendor/github.com/nxadm/tail/watch/inotify_tracker.go

This file was deleted.

119 changes: 0 additions & 119 deletions vendor/github.com/nxadm/tail/watch/polling.go

This file was deleted.

21 changes: 0 additions & 21 deletions vendor/github.com/nxadm/tail/watch/watch.go

This file was deleted.

93 changes: 0 additions & 93 deletions vendor/github.com/nxadm/tail/winfile/winfile.go

This file was deleted.

24 changes: 0 additions & 24 deletions vendor/github.com/onsi/ginkgo/.travis.yml

This file was deleted.

33 changes: 0 additions & 33 deletions vendor/github.com/onsi/ginkgo/CONTRIBUTING.md

This file was deleted.

169 changes: 0 additions & 169 deletions vendor/github.com/onsi/ginkgo/README.md

This file was deleted.

232 changes: 0 additions & 232 deletions vendor/github.com/onsi/ginkgo/config/config.go

This file was deleted.

110 changes: 0 additions & 110 deletions vendor/github.com/onsi/ginkgo/extensions/table/table.go

This file was deleted.

129 changes: 0 additions & 129 deletions vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go

This file was deleted.

Loading

0 comments on commit 216489f

Please sign in to comment.